Skip to content

Commit

Permalink
Fix MODE=tiny build
Browse files Browse the repository at this point in the history
  • Loading branch information
jart committed Oct 8, 2023
1 parent 791f79f commit 94dc7a6
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions test/libc/thread/stackoverflow1_test.c
Original file line number Diff line number Diff line change
Expand Up @@ -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));
Expand Down

0 comments on commit 94dc7a6

Please sign in to comment.