Searched refs:shm_open_should_fail (Results 1 – 1 of 1) sorted by relevance
/freebsd/tests/sys/posixshm/ |
H A D | posixshm_test.c | 88 shm_open_should_fail(const char *path, int flags, mode_t mode, int error) in shm_open_should_fail() function 603 shm_open_should_fail(test_path, O_RDONLY, 0777, ENOENT); in ATF_TC_BODY() 610 shm_open_should_fail("blah", O_RDONLY, 0777, EINVAL); in ATF_TC_BODY() 619 shm_open_should_fail(test_path, O_WRONLY, 0777, EINVAL); in ATF_TC_BODY() 628 shm_open_should_fail(test_path, O_RDONLY | O_DIRECT, 0777, EINVAL); in ATF_TC_BODY() 645 shm_open_should_fail(SHM_ANON, O_RDONLY, 0777, EINVAL); in ATF_TC_BODY() 652 shm_open_should_fail((char *)1024, O_RDONLY, 0777, EFAULT); in ATF_TC_BODY() 663 shm_open_should_fail(page, O_RDONLY, 0777, ENAMETOOLONG); in ATF_TC_BODY() 671 shm_open_should_fail("/notreallythere", O_RDONLY, 0777, ENOENT); in ATF_TC_BODY() 685 shm_open_should_fail(test_path, O_RDONLY|O_CREAT|O_EXCL, in ATF_TC_BODY()
|