diff options
author | Samuel Thibault <samuel.thibault@ens-lyon.org> | 2024-04-06 13:49:36 +0200 |
---|---|---|
committer | Samuel Thibault <samuel.thibault@ens-lyon.org> | 2024-04-06 13:49:36 +0200 |
commit | f2e8e4d2619629b75dd6263b2aa58939538fa7e2 (patch) | |
tree | 30e8a7df1b0a33a76f2d9c2669d7d6ff7327585c | |
parent | 4d5a69509ce2bb11a30bd2557731287f5292aef8 (diff) | |
download | gnumach-f2e8e4d2619629b75dd6263b2aa58939538fa7e2.tar.gz gnumach-f2e8e4d2619629b75dd6263b2aa58939538fa7e2.tar.bz2 gnumach-f2e8e4d2619629b75dd6263b2aa58939538fa7e2.zip |
tests: Reboot the VM after the test
So it does not have to timeout.
-rw-r--r-- | tests/testlib.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/testlib.c b/tests/testlib.c index 12c5e771..f82990f9 100644 --- a/tests/testlib.c +++ b/tests/testlib.c @@ -62,7 +62,7 @@ mach_port_t device_priv(void) void halt() { - int ret = host_reboot(host_priv_port, RB_HALT); + int ret = host_reboot(host_priv_port, 0); ASSERT_RET(ret, "host_reboot() failed!"); while (1) ; |