We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c260915 commit a08240bCopy full SHA for a08240b
tests/posix/semaphores/src/main.c
@@ -73,9 +73,7 @@ static void semaphore_test(sem_t *sem)
73
zassert_equal(sem_getvalue(sem, &val), 0);
74
zassert_equal(val, 1);
75
76
- zassert_equal(sem_destroy(sem), -1,
77
- "acquired semaphore"
78
- " is destroyed");
+ zassert_equal(sem_destroy(sem), -1, "acquired semaphore is destroyed");
79
zassert_equal(errno, EBUSY);
80
81
/* TESTPOINT: take semaphore which is initialized with 1 */
0 commit comments