Symbol: FAIL_IF_EXIT_MSG
tools/testing/selftests/powerpc/dexcr/dexcr.c
118
FAIL_IF_EXIT_MSG(true, "bad enum dexcr_source");
tools/testing/selftests/powerpc/dexcr/dexcr.c
126
FAIL_IF_EXIT_MSG(pid == -1, "fork failed");
tools/testing/selftests/powerpc/dexcr/dexcr.c
127
FAIL_IF_EXIT_MSG(waitpid(pid, &wstatus, 0) == -1, "wait failed");
tools/testing/selftests/powerpc/dexcr/dexcr.c
128
FAIL_IF_EXIT_MSG(!WIFEXITED(wstatus), "child did not exit cleanly");
tools/testing/selftests/powerpc/dexcr/dexcr.c
129
FAIL_IF_EXIT_MSG(WEXITSTATUS(wstatus) != 0, "child exit error");
tools/testing/selftests/powerpc/dexcr/dexcr.c
59
FAIL_IF_EXIT_MSG(true, "unknown PR aspect");
tools/testing/selftests/powerpc/dexcr/dexcr_test.c
135
FAIL_IF_EXIT_MSG(!(ctrl & PR_PPC_DEXCR_CTRL_SET_ONEXEC),
tools/testing/selftests/powerpc/dexcr/dexcr_test.c
138
FAIL_IF_EXIT_MSG(mfspr(SPRN_DEXCR_RO) & aspect,
tools/testing/selftests/powerpc/dexcr/dexcr_test.c
157
FAIL_IF_EXIT_MSG(!(ctrl & PR_PPC_DEXCR_CTRL_CLEAR_ONEXEC),
tools/testing/selftests/powerpc/dexcr/dexcr_test.c
160
FAIL_IF_EXIT_MSG(!(mfspr(SPRN_DEXCR_RO) & aspect),
tools/testing/selftests/powerpc/dexcr/dexcr_test.c
23
FAIL_IF_EXIT_MSG(!(ctrl & PR_PPC_DEXCR_CTRL_SET),
tools/testing/selftests/powerpc/dexcr/dexcr_test.c
26
FAIL_IF_EXIT_MSG(!(ctrl & PR_PPC_DEXCR_CTRL_SET_ONEXEC),
tools/testing/selftests/powerpc/dexcr/dexcr_test.c
29
FAIL_IF_EXIT_MSG(!(aspect & dexcr), "setting aspect across exec did not take effect");
tools/testing/selftests/powerpc/dexcr/dexcr_test.c
31
FAIL_IF_EXIT_MSG(!(ctrl & PR_PPC_DEXCR_CTRL_CLEAR),
tools/testing/selftests/powerpc/dexcr/dexcr_test.c
34
FAIL_IF_EXIT_MSG(!(ctrl & PR_PPC_DEXCR_CTRL_CLEAR_ONEXEC),
tools/testing/selftests/powerpc/dexcr/dexcr_test.c
37
FAIL_IF_EXIT_MSG(aspect & dexcr, "clearing aspect across exec did not take effect");
tools/testing/selftests/powerpc/dexcr/dexcr_test.c
39
FAIL_IF_EXIT_MSG(true, "unknown expected status");
tools/testing/selftests/powerpc/dexcr/hashchk_test.c
148
FAIL_IF_EXIT_MSG(hash_values[HASH_COUNT] != (unsigned long)&hash_values,
tools/testing/selftests/powerpc/ptrace/ptrace-perf-hwbreak.c
200
FAIL_IF_EXIT_MSG(ptrace_traceme(), "PTRACE_TRACEME failed");
tools/testing/selftests/powerpc/ptrace/ptrace-perf-hwbreak.c
201
FAIL_IF_EXIT_MSG(raise(SIGSTOP), "Child failed to raise SIGSTOP");
tools/testing/selftests/powerpc/utils.c
630
FAIL_IF_EXIT_MSG(sigaction(sig, &sa, &old_handler),
tools/testing/selftests/powerpc/utils.c
640
FAIL_IF_EXIT_MSG(sigaction(sig, &old_handler, &popped),