1
0
mirror of https://github.com/systemd/systemd.git synced 2024-11-02 10:51:20 +03:00

test: make test-sd-device stricter

This commit is contained in:
Yu Watanabe 2018-10-09 22:53:13 +09:00
parent cd8d816d78
commit b5f24a3858

View File

@ -113,13 +113,7 @@ static void test_sd_device_enumerator_filter_subsystem(void) {
assert_se(hashmap_put(subsystems, str, h) >= 0);
}
r = hashmap_put(h, syspath, d);
assert_se(r >= 0 || r == -EEXIST);
if (r < 0) {
log_info("Duplicated subsystem:%s syspath:%s", subsystem, syspath);
continue;
}
assert_se(hashmap_put(h, syspath, d) >= 0);
assert_se(sd_device_ref(d));
log_debug("Added subsystem:%s syspath:%s", subsystem, syspath);