Fix build in MODE=dbg

This commit is contained in:
Justine Tunney 2023-11-13 15:13:45 -08:00
parent 751d20d98d
commit 0283f2772c
No known key found for this signature in database
GPG key ID: BE714B4575D6E328
3 changed files with 10 additions and 10 deletions

View file

@ -118,7 +118,7 @@ TEST(sem_close, withUnnamedSemaphore_isUndefinedBehavior) {
SPAWN(fork);
IgnoreStderr();
sem_close(&sem);
TERMS(SIGABRT); // see __assert_fail
TERMS(SIGILL); // see __assert_fail
ASSERT_SYS(0, 0, sem_destroy(&sem));
}