summaryrefslogtreecommitdiffstats
path: root/test
diff options
context:
space:
mode:
authorSimon Glass <sjg@chromium.org>2021-03-07 17:34:48 -0700
committerTom Rini <trini@konsulko.com>2021-03-12 09:57:29 -0500
commitd002a2764418fa8f054d94789e7814f60294318f (patch)
treed1c2a10f1ebb69d7101d5bdfc15aa540d10af0ed /test
parent1c7217511cd9a050183402b56c0371e4f9720bea (diff)
downloadu-boot-d002a2764418fa8f054d94789e7814f60294318f.tar.gz
u-boot-d002a2764418fa8f054d94789e7814f60294318f.tar.xz
u-boot-d002a2764418fa8f054d94789e7814f60294318f.zip
test: Create pre/post-run functions
Split out the test preparation into a separation function before expanding it. Add a post-run function as well, currently empty. Signed-off-by: Simon Glass <sjg@chromium.org>
Diffstat (limited to 'test')
-rw-r--r--test/test-main.c41
1 files changed, 31 insertions, 10 deletions
diff --git a/test/test-main.c b/test/test-main.c
index 376e7ebd3d..7961fd8aa3 100644
--- a/test/test-main.c
+++ b/test/test-main.c
@@ -8,6 +8,27 @@
#include <console.h>
#include <test/test.h>
+int test_pre_run(struct unit_test_state *uts, struct unit_test *test)
+{
+ uts->start = mallinfo();
+
+ if (test->flags & UT_TESTF_CONSOLE_REC) {
+ int ret = console_record_reset_enable();
+
+ if (ret) {
+ printf("Skipping: Console recording disabled\n");
+ return -EAGAIN;
+ }
+ }
+
+ return 0;
+}
+
+int test_post_run(struct unit_test_state *uts, struct unit_test *test)
+{
+ return 0;
+}
+
int ut_run_tests(struct unit_test_state *uts, const char *prefix,
struct unit_test *tests, int count, const char *select_name)
{
@@ -17,6 +38,7 @@ int ut_run_tests(struct unit_test_state *uts, const char *prefix,
for (test = tests; test < tests + count; test++) {
const char *test_name = test->name;
+ int ret;
/* Remove the prefix */
if (prefix && !strncmp(test_name, prefix, prefix_len))
@@ -27,18 +49,17 @@ int ut_run_tests(struct unit_test_state *uts, const char *prefix,
printf("Test: %s\n", test_name);
found++;
- if (test->flags & UT_TESTF_CONSOLE_REC) {
- int ret = console_record_reset_enable();
-
- if (ret) {
- printf("Skipping: Console recording disabled\n");
- continue;
- }
- }
-
- uts->start = mallinfo();
+ ret = test_pre_run(uts, test);
+ if (ret == -EAGAIN)
+ continue;
+ if (ret)
+ return ret;
test->func(uts);
+
+ ret = test_post_run(uts, test);
+ if (ret)
+ return ret;
}
if (select_name && !found)
return -ENOENT;