diff options
author | Andreas Färber <afaerber@suse.de> | 2015-03-25 18:40:15 +0100 |
---|---|---|
committer | Andreas Färber <afaerber@suse.de> | 2015-06-19 10:29:14 +0200 |
commit | 53f77e4562f85ccf82c8831a4448e9aefb538837 (patch) | |
tree | 2e157291a0aff53457da50305a16f6a6488760b9 /tests/eepro100-test.c | |
parent | 6bc5cf92c0ab0085ba9a6e0cebcf5a544f416ca7 (diff) |
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.c | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/tests/eepro100-test.c b/tests/eepro100-test.c index bf8252627e..8bfaccdcbb 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(); |