Lines Matching refs:FAIL_IF
258 FAIL_IF(r.base == MAP_FAILED); in test()
272 FAIL_IF(sigprocmask(SIG_SETMASK, 0, &act.sa_mask) != 0); in test()
275 FAIL_IF(sigaction(SIGSEGV, &act, NULL) != 0); in test()
295 FAIL_IF(pthread_attr_init(&attr) != 0); in test()
296 FAIL_IF(pthread_barrier_init(&iteration_barrier, NULL, 2) != 0); in test()
301 FAIL_IF(pthread_create(&prot_thread, &attr, &protect, &r) != 0); in test()
302 FAIL_IF(pthread_create(&pacc_thread, &attr, &protect_access, &r) != 0); in test()
303 FAIL_IF(pthread_join(prot_thread, NULL) != 0); in test()
304 FAIL_IF(pthread_join(pacc_thread, NULL) != 0); in test()
309 FAIL_IF(pthread_create(&prot_thread, &attr, &protect, &r) != 0); in test()
310 FAIL_IF(pthread_create(&pacc_thread, &attr, &protect_access, &r) != 0); in test()
311 FAIL_IF(pthread_join(prot_thread, NULL) != 0); in test()
312 FAIL_IF(pthread_join(pacc_thread, NULL) != 0); in test()
317 FAIL_IF(pthread_create(&prot_thread, &attr, &protect, &r) != 0); in test()
318 FAIL_IF(pthread_create(&pacc_thread, &attr, &protect_access, &r) != 0); in test()
319 FAIL_IF(pthread_join(prot_thread, NULL) != 0); in test()
320 FAIL_IF(pthread_join(pacc_thread, NULL) != 0); in test()
323 FAIL_IF(pthread_attr_destroy(&attr) != 0); in test()
324 FAIL_IF(pthread_barrier_destroy(&iteration_barrier) != 0); in test()