diff options
author | Jeremy Kerr <jk@ozlabs.org> | 2013-09-19 17:16:53 +0800 |
---|---|---|
committer | Jeremy Kerr <jk@ozlabs.org> | 2013-09-19 21:36:33 +0800 |
commit | f611bde3f182e9a4befb48a0160d1831708aca67 (patch) | |
tree | cacf467246c85c491bf91b3fe46c448c5fdbab94 /test/parser/test-grub2-ubuntu-13_04-x86.c | |
parent | 4926cde5c97d09794ec33cca1321bb05a8d43304 (diff) | |
download | talos-petitboot-f611bde3f182e9a4befb48a0160d1831708aca67.tar.gz talos-petitboot-f611bde3f182e9a4befb48a0160d1831708aca67.zip |
discover: Remove unnecessary event passing
Currently, we pass "events" between the udev, user-event and
device-handler layers. These events all get sent through
device_handler_event, then de-multiplexed to an appropriate handler,
depending on their source.
Instead, just export relevant device_handler functions, and have the
(old) event sources call these functions directly.
This also means we can include a lot more of the device hander code in
the parser tests.
Signed-off-by: Jeremy Kerr <jk@ozlabs.org>
Diffstat (limited to 'test/parser/test-grub2-ubuntu-13_04-x86.c')
-rw-r--r-- | test/parser/test-grub2-ubuntu-13_04-x86.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/parser/test-grub2-ubuntu-13_04-x86.c b/test/parser/test-grub2-ubuntu-13_04-x86.c index 45da55f..145e4c0 100644 --- a/test/parser/test-grub2-ubuntu-13_04-x86.c +++ b/test/parser/test-grub2-ubuntu-13_04-x86.c @@ -44,7 +44,7 @@ void run_test(struct parser_test *test) /* hotplug a device with a maching UUID, and check that our * resources become resolved */ - dev = test_create_device(ctx, "external"); + dev = test_create_device(test, "external"); dev->uuid = "29beca39-9181-4780-bbb2-ab5d4be59aaf"; test_hotplug_device(test, dev); |