@@ -357,7 +357,6 @@ int main(int argc, char **argv)
int i;
g_test_init(&argc, &argv, NULL);
- g_test_set_nonfatal_assertions();
qtest_add_func("/npcm7xx_gpio/dout_to_din", test_dout_to_din);
qtest_add_func("/npcm7xx_gpio/pullup_pulldown", test_pullup_pulldown);
@@ -261,7 +261,6 @@ int main(int argc, char **argv)
int ret;
g_test_init(&argc, &argv, NULL);
- g_test_set_nonfatal_assertions();
qtest_add_func("npcm7xx_rng/enable_disable", test_enable_disable);
qtest_add_func("npcm7xx_rng/rosel", test_rosel);
@@ -530,7 +530,6 @@ int main(int argc, char **argv)
int i, j;
g_test_init(&argc, &argv, NULL);
- g_test_set_nonfatal_assertions();
for (i = 0; i < ARRAY_SIZE(timer_block); i++) {
for (j = 0; j < ARRAY_SIZE(timer); j++) {
@@ -303,7 +303,6 @@ static void watchdog_add_test(const char *name, const Watchdog* wd,
int main(int argc, char **argv)
{
g_test_init(&argc, &argv, NULL);
- g_test_set_nonfatal_assertions();
for (int i = 0; i < ARRAY_SIZE(watchdog_list); ++i) {
const Watchdog *wd = &watchdog_list[i];
Even though g_test_set_nonfatal_assertions() makes test failure reporting a lot better, no other tests currently do this so we'll turn it off as well. Signed-off-by: Havard Skinnemoen <hskinnemoen@google.com> --- tests/qtest/npcm7xx_gpio-test.c | 1 - tests/qtest/npcm7xx_rng-test.c | 1 - tests/qtest/npcm7xx_timer-test.c | 1 - tests/qtest/npcm7xx_watchdog_timer-test.c | 1 - 4 files changed, 4 deletions(-)