diff options
author | Christian Cunningham <cc@localhost> | 2022-02-13 01:57:57 -0700 |
---|---|---|
committer | Christian Cunningham <cc@localhost> | 2022-02-13 01:57:57 -0700 |
commit | 1e8de5e7c8fb5f464645e3f71c68d7bf6533152c (patch) | |
tree | 28130df7805afe9fadb3fac807264072ac1432a5 | |
parent | 958696be616aaaa4fe18fc2b886216f191bb6f9b (diff) |
Revised test
-rw-r--r-- | src/tests/test.c | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/src/tests/test.c b/src/tests/test.c index af906cc..c4abb3e 100644 --- a/src/tests/test.c +++ b/src/tests/test.c @@ -61,15 +61,14 @@ void btest(void) { if (testi % 3 == 0) { testi++; - ctest1(); + add_thread(ctest1, 0, 1); } else if (testi % 3 == 1) { testi++; - ctest2(); + add_thread(ctest2, 0, 0); } else if (testi % 3 == 2) { testi++; - ctest3(); + add_thread(ctest3, 0, 1); } - uart_hexn(&testm); } |