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 2231c7e commit ece1c2dCopy full SHA for ece1c2d
tests/posix/semaphores/src/main.c
@@ -71,9 +71,7 @@ static void semaphore_test(sem_t *sem)
71
zassert_equal(sem_getvalue(sem, &val), 0);
72
zassert_equal(val, 1);
73
74
- zassert_equal(sem_destroy(sem), -1,
75
- "acquired semaphore"
76
- " is destroyed");
+ zassert_equal(sem_destroy(sem), -1, "acquired semaphore is destroyed");
77
zassert_equal(errno, EBUSY);
78
79
/* TESTPOINT: take semaphore which is initialized with 1 */
0 commit comments