diff options
author | Marvin Borner | 2020-10-24 13:30:32 +0200 |
---|---|---|
committer | Marvin Borner | 2020-10-24 13:30:32 +0200 |
commit | 89da1c61f55ee776669240b95f60b97ff339c901 (patch) | |
tree | b10238fe608db7c1a7baa6c457ff7065f49d897b | |
parent | f97f8a0bb4a657220495a9a546fccb01eafadc84 (diff) |
Improved testing
-rw-r--r-- | apps/test.c | 5 | ||||
-rwxr-xr-x | run | 3 |
2 files changed, 5 insertions, 3 deletions
diff --git a/apps/test.c b/apps/test.c index 1cd317f..874136e 100644 --- a/apps/test.c +++ b/apps/test.c @@ -97,6 +97,11 @@ int main() else print("All tests passed\n"); + // Try emulator shutdown + outw(0xB004, 0x2000); + outw(0x604, 0x2000); + outw(0x4004, 0x3400); + loop(); return 0; } @@ -180,9 +180,6 @@ make_test() { if [ "$mode" = "test" ]; then qemu_with_flags -serial file:test.log -nographic -drive file=build/disk.img,format=raw,index=1,media=disk & - sleep 1 - pkill qemu-system-i386 || true - echo grep -E 'PASS|FAIL' test.log if grep -q "All tests passed" test.log; then exit 0; else exit 1; fi else |