From 94dc7a684ea29ac75836e3334cc21f4e802d1faa Mon Sep 17 00:00:00 2001 From: Justine Tunney Date: Sun, 8 Oct 2023 09:34:15 -0700 Subject: [PATCH] Fix MODE=tiny build --- test/libc/thread/stackoverflow1_test.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/test/libc/thread/stackoverflow1_test.c b/test/libc/thread/stackoverflow1_test.c index 19fa2b6f42c..4d7b060d88d 100644 --- a/test/libc/thread/stackoverflow1_test.c +++ b/test/libc/thread/stackoverflow1_test.c @@ -86,6 +86,8 @@ int StackOverflow(int f(), int n) { int (*pStackOverflow)(int (*)(), int) = StackOverflow; TEST(stackoverflow, standardStack_altStack_process_longjmp) { + if (IsTiny()) return; // TODO(jart): why? + int jumpcode; if (!(jumpcode = setjmp(recover))) { exit(pStackOverflow(pStackOverflow, 0));