summaryrefslogtreecommitdiffstats
path: root/tests/eepro100-test.c
diff options
context:
space:
mode:
authorAndreas Färber <afaerber@suse.de>2015-03-25 18:40:15 +0100
committerAndreas Färber <afaerber@suse.de>2015-06-19 10:29:14 +0200
commit53f77e4562f85ccf82c8831a4448e9aefb538837 (patch)
tree2e157291a0aff53457da50305a16f6a6488760b9 /tests/eepro100-test.c
parent6bc5cf92c0ab0085ba9a6e0cebcf5a544f416ca7 (diff)
downloadhqemu-53f77e4562f85ccf82c8831a4448e9aefb538837.zip
hqemu-53f77e4562f85ccf82c8831a4448e9aefb538837.tar.gz
tests: Use qtest_add_data_func() consistently
Replace uses of g_test_add_data_func() for QTest test cases. It is still valid to use it for any non-QTest test cases, which are not run for multiple target binaries. Suggested-by: John Snow <jsnow@redhat.com> Reviewed-by: John Snow <jsnow@redhat.com> Signed-off-by: Andreas Färber <afaerber@suse.de>
Diffstat (limited to 'tests/eepro100-test.c')
-rw-r--r--tests/eepro100-test.c5
1 files changed, 2 insertions, 3 deletions
diff --git a/tests/eepro100-test.c b/tests/eepro100-test.c
index bf82526..8bfaccd 100644
--- a/tests/eepro100-test.c
+++ b/tests/eepro100-test.c
@@ -54,9 +54,8 @@ int main(int argc, char **argv)
for (i = 0; i < ARRAY_SIZE(models); i++) {
char *path;
- path = g_strdup_printf("/%s/eepro100/%s",
- qtest_get_arch(), models[i]);
- g_test_add_data_func(path, models[i], test_device);
+ path = g_strdup_printf("eepro100/%s", models[i]);
+ qtest_add_data_func(path, models[i], test_device);
}
return g_test_run();
OpenPOWER on IntegriCloud