diff options
| author | Kimplul <kimi.h.kuparinen@gmail.com> | 2024-08-26 18:51:10 +0300 |
|---|---|---|
| committer | Kimplul <kimi.h.kuparinen@gmail.com> | 2024-08-26 18:51:10 +0300 |
| commit | b25156373cd89792b1c457b77699bb7f9beb430d (patch) | |
| tree | 56816903fcedc9fe35786b9baf43499d4ec3d19f /tests/detach | |
| parent | 260fc4c790ca25ee1ffab4edd9c6488d3bcb441c (diff) | |
| download | kmi-b25156373cd89792b1c457b77699bb7f9beb430d.tar.gz kmi-b25156373cd89792b1c457b77699bb7f9beb430d.zip | |
improve killing processes/threads, test
+ Remove sys_kill() as we should be using a two-stage process where a
thread is first orphaned by sys_detach(), and then the thread itself
calls sys_exit() after it has done all necessary cleanup in init.
Diffstat (limited to 'tests/detach')
| -rw-r--r-- | tests/detach/init.c | 52 | ||||
| -rw-r--r-- | tests/detach/source.mk | 2 |
2 files changed, 54 insertions, 0 deletions
diff --git a/tests/detach/init.c b/tests/detach/init.c new file mode 100644 index 0000000..d3f282e --- /dev/null +++ b/tests/detach/init.c @@ -0,0 +1,52 @@ +#include <common/test.h> + +START(pid, tid, d0, d1, d2, d3) +{ + UNUSED(pid); + UNUSED(tid); + UNUSED(d1); + UNUSED(d2); + UNUSED(d3); + + if (d0 == SYS_USER_SPAWNED) { + size_t prev_ram = sys_conf_get(CONF_RAM_USAGE, 0); + printf("ram usage before new process: %zx\n", prev_ram); + + printf("forking\n"); + id_t our_tid = 0; + id_t new_id = sys_fork(&our_tid); + check(new_id > 0, "error from fork\n"); + + /* not in general but in this case */ + check(new_id != 0, "in child, should never be in child\n"); + + printf("checking detach of nonsense id\n"); + enum sys_status r = sys_detach(200); + check(r != OK, "nonsense id succeeded?\n"); + + printf("detaching child\n"); + r = sys_detach(new_id); + check(r == OK, "detaching child failed\n"); + + printf("swapping to detached/orphaned thread\n"); + r = sys_swap(new_id); + check(r == OK, "swapping to detached thread failed\n"); + + size_t new_ram = sys_conf_get(CONF_RAM_USAGE, 0); + printf("ram usage after new process: %zx\n", new_ram); + + check(new_ram == prev_ram, "fork/detach leaked memory\n"); + ok(); + } + else if (d0 == SYS_USER_ORPHANED) { + printf("exiting with nonsense swap id\n"); + enum sys_status r = sys_exit(200); + check(r != OK, "nonsense exit succeeded (but returned...?)\n"); + + printf("exiting with sensible swap id\n"); + r = sys_exit(1); + check(0, "exit with sensible id returned\n"); + } + + check(0, "missed SYS_USER_ORPHANED\n"); +} diff --git a/tests/detach/source.mk b/tests/detach/source.mk new file mode 100644 index 0000000..843562f --- /dev/null +++ b/tests/detach/source.mk @@ -0,0 +1,2 @@ +DO != ./scripts/gen-prog -n detach -p init init.c +DO != ./scripts/gen-simple -n detach -p init |
