Home
last modified time | relevance | path

Searched refs:assert_posix_error (Results 1 – 2 of 2) sorted by relevance

/haiku/src/tests/system/libroot/posix/
H A Drealtime_sem_test1.cpp125 assert_posix_error(ENOENT, sem_unlink(kSemName1)); in test_open_close_unlink()
344 assert_posix_error(EAGAIN, sem_trywait(sem)); in test_post_wait_named()
386 assert_posix_error(ETIMEDOUT, sem_timedwait(sem, in test_post_wait_named()
479 assert_posix_error(EAGAIN, sem_trywait(sem)); in test_post_wait_unnamed()
521 assert_posix_error(ETIMEDOUT, sem_timedwait(sem, in test_post_wait_unnamed()
638 assert_posix_error(ETIMEDOUT, sem_timedwait(sem, in test_post_wait_named_fork()
770 assert_posix_error(ETIMEDOUT, sem_timedwait(sem, in test_post_wait_named_fork2()
979 assert_posix_error(ETIMEDOUT, sem_timedwait(sem, in test_post_wait_unnamed_fork_shared()
H A DTestUnitUtils.h143 #define assert_posix_error(expectedError, result) \ macro