tests: abort on errors during genlist expand test, not warnings
authorMike Blumenkrantz <zmike@samsung.com>
Fri, 29 Mar 2019 17:58:14 +0000 (18:58 +0100)
committerJunsuChoi <jsuya.choi@samsung.com>
Tue, 2 Apr 2019 04:24:22 +0000 (13:24 +0900)
Summary:
log level=2 is the warning level, which is not super useful since
there's currently billions of eo warnings occuring in every function
call

Reviewers: cedric, segfaultxavi

Reviewed By: cedric, segfaultxavi

Subscribers: segfaultxavi, cedric, #reviewers, #committers

Tags: #efl

Differential Revision: https://phab.enlightenment.org/D8515

src/tests/elementary/elm_test_genlist.c

index 894a6fb..1ffec17 100644 (file)
@@ -516,7 +516,7 @@ EFL_START_TEST(elm_genlist_test_tree_expand)
    tree_abort = eina_log_abort_on_critical_get();
    tree_abort_level = eina_log_abort_on_critical_level_get();
    /* this should never trigger errors */
-   eina_log_abort_on_critical_level_set(2);
+   eina_log_abort_on_critical_level_set(1);
    eina_log_abort_on_critical_set(1);
    ecore_main_loop_begin();
 }