From a2b0542349e284851950b9af841e5ca592cd966d Mon Sep 17 00:00:00 2001 From: Gavin Hayes Date: Fri, 3 Feb 2023 11:41:24 -0500 Subject: [PATCH] zipos_to_fd - remove unncessary lseeks, add _unassert, fix MODE=dbg --- test/libc/calls/fexecve_test.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/libc/calls/fexecve_test.c b/test/libc/calls/fexecve_test.c index 7900e1271..544cc5c88 100644 --- a/test/libc/calls/fexecve_test.c +++ b/test/libc/calls/fexecve_test.c @@ -103,7 +103,7 @@ TEST(fexecve, APE) { TEST(fexecve, zipos) { if (!IsLinux() && !IsFreebsd()) return; int fd = open("/zip/life.elf", O_RDONLY); - SPAWN(vfork); + SPAWN(fork); if (fd == -1 && errno == ENOSYS) _Exit(42); fexecve(fd, (char *const[]){0}, (char *const[]){0}); EXITS(42);