Lines Matching full:sleep
27 ZTEST(sleep, test_sleep) in ZTEST() argument
31 /* call sleep(10), wakeup after 1s, expect >= 8s left */ in ZTEST()
37 zassert_ok(sleep(0)); in ZTEST()
41 zassert_equal(0, sleep(1)); in ZTEST()
47 zassert_equal(0, sleep(2)); in ZTEST()
51 /* test that sleep reports the remainder */ in ZTEST()
55 zassert_true(sleep(sleep_max_s) >= sleep_rem_s); in ZTEST()
58 ZTEST(sleep, test_usleep) in ZTEST() argument
68 /* sleep for the spec limit */ in ZTEST()
74 /* sleep for exactly the limit threshold */ in ZTEST()
78 /* sleep for over the spec limit */ in ZTEST()
82 /* test that sleep reports errno = EINTR when woken up */ in ZTEST()
90 ZTEST_SUITE(sleep, NULL, NULL, NULL, NULL, NULL);