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 <hskinnem...@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(-) diff --git a/tests/qtest/npcm7xx_gpio-test.c b/tests/qtest/npcm7xx_gpio-test.c index 1004cef812..3af49173a7 100644 --- a/tests/qtest/npcm7xx_gpio-test.c +++ b/tests/qtest/npcm7xx_gpio-test.c @@ -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); diff --git a/tests/qtest/npcm7xx_rng-test.c b/tests/qtest/npcm7xx_rng-test.c index 57787c5ffc..d7e42cf062 100644 --- a/tests/qtest/npcm7xx_rng-test.c +++ b/tests/qtest/npcm7xx_rng-test.c @@ -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); diff --git a/tests/qtest/npcm7xx_timer-test.c b/tests/qtest/npcm7xx_timer-test.c index f08b0cd62a..77e6e0d472 100644 --- a/tests/qtest/npcm7xx_timer-test.c +++ b/tests/qtest/npcm7xx_timer-test.c @@ -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++) { diff --git a/tests/qtest/npcm7xx_watchdog_timer-test.c b/tests/qtest/npcm7xx_watchdog_timer-test.c index 54d5d6d8f2..426303ecfa 100644 --- a/tests/qtest/npcm7xx_watchdog_timer-test.c +++ b/tests/qtest/npcm7xx_watchdog_timer-test.c @@ -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]; -- 2.29.1.341.ge80a0c044ae-goog