]> git.dujemihanovic.xyz Git - u-boot.git/commitdiff
test: Move console silencing to test_pre_run()
authorSimon Glass <sjg@chromium.org>
Mon, 8 Mar 2021 00:34:54 +0000 (17:34 -0700)
committerTom Rini <trini@konsulko.com>
Fri, 12 Mar 2021 14:57:30 +0000 (09:57 -0500)
We already have a function for silencing the console during tests. Use
this from test_pre_run() and drop this code from the driver model tests.

Signed-off-by: Simon Glass <sjg@chromium.org>
test/dm/test-dm.c
test/test-main.c

index d1d83e34782c5e7112b9a4c02ddd6a4067b671d5..fdd35f663e47667d7dabcfe71d557a73748957b5 100644 (file)
@@ -66,7 +66,6 @@ static int dm_test_destroy(struct unit_test_state *uts)
 static int dm_do_test(struct unit_test_state *uts, struct unit_test *test,
                      bool of_live)
 {
-       struct sandbox_state *state = state_get_current();
        const char *fname = strrchr(test->file, '/') + 1;
 
        printf("Test: %s: %s%s\n", test->name, fname,
@@ -75,13 +74,10 @@ static int dm_do_test(struct unit_test_state *uts, struct unit_test *test,
 
        ut_assertok(test_pre_run(uts, test));
 
-       if (!state->show_test_output)
-               gd->flags |= GD_FLG_SILENT;
        test->func(uts);
 
        ut_assertok(test_post_run(uts, test));
 
-       gd->flags &= ~(GD_FLG_SILENT | GD_FLG_RECORD);
        state_set_skip_delays(false);
 
        ut_assertok(dm_test_destroy(uts));
index db0d82e36c32ad82364d62c4c9f2de1b12970258..e273777b6e204069cb8dee766ce3c8f8d97de68f 100644 (file)
@@ -50,13 +50,14 @@ int test_pre_run(struct unit_test_state *uts, struct unit_test *test)
                        return -EAGAIN;
                }
        }
+       ut_silence_console(uts);
 
        return 0;
 }
 
 int test_post_run(struct unit_test_state *uts, struct unit_test *test)
 {
-       gd->flags &= ~GD_FLG_RECORD;
+       ut_unsilence_console(uts);
 
        return 0;
 }