mirror of
https://github.com/systemd/systemd.git
synced 2024-12-12 03:33:44 +08:00
test: add a test case for issue #11652
This commit is contained in:
parent
5ce41697bd
commit
9ffb90964f
@ -157,6 +157,15 @@ static void test_sd_device_monitor_filter_remove(sd_device *device) {
|
||||
assert_se(sd_event_loop(sd_device_monitor_get_event(monitor_client)) == 100);
|
||||
}
|
||||
|
||||
static void test_device_copy_properties(sd_device *device) {
|
||||
_cleanup_(sd_device_unrefp) sd_device *copy = NULL;
|
||||
|
||||
assert_se(device_shallow_clone(device, ©) >= 0);
|
||||
assert_se(device_copy_properties(copy, device) >= 0);
|
||||
|
||||
test_send_receive_one(copy, false, false, false);
|
||||
}
|
||||
|
||||
int main(int argc, char *argv[]) {
|
||||
_cleanup_(sd_device_unrefp) sd_device *loopback = NULL, *sda = NULL;
|
||||
int r;
|
||||
@ -186,6 +195,7 @@ int main(int argc, char *argv[]) {
|
||||
|
||||
test_subsystem_filter(loopback);
|
||||
test_sd_device_monitor_filter_remove(loopback);
|
||||
test_device_copy_properties(loopback);
|
||||
|
||||
r = sd_device_new_from_subsystem_sysname(&sda, "block", "sda");
|
||||
if (r < 0) {
|
||||
|
Loading…
Reference in New Issue
Block a user