Lines Matching defs:condition
24 * ksft_test_result(condition, fmt, ...);
37 * ksft_exit(condition);
234 * ksft_test_result() - Report test success based on truth of condition
236 * @condition: if true, report test success, otherwise failure.
238 #define ksft_test_result(condition, fmt, ...) do { \
239 if (!!(condition)) \
349 * ksft_test_result() - Report test success based on truth of condition
351 * @condition: if true, report test success, otherwise failure.
385 * ksft_exit() - Exit selftest based on truth of condition
387 * @condition: if true, exit self test with success, otherwise fail.
389 #define ksft_exit(condition) do { \
390 if (!!(condition)) \