Lines Matching refs:test_status
41 } test_status;
50 /* Probe for console output: obtains test_status lines of interest. */
54 WRITE_ONCE(test_status.report_found, true);
56 WRITE_ONCE(test_status.async_fault, true);
90 KUNIT_EXPECT_FALSE(test, READ_ONCE(test_status.report_found));
104 * Since the compiler doesn't see that the expression can change the test_status
109 * In between KUNIT_EXPECT_KASAN_FAIL checks, test_status.report_found is kept
111 * checks by asserting !test_status.report_found at the start of
118 KUNIT_EXPECT_FALSE(test, READ_ONCE(test_status.report_found)); \
124 if (!READ_ONCE(test_status.report_found)) { \
131 if (READ_ONCE(test_status.report_found) && \
132 !READ_ONCE(test_status.async_fault)) \
136 WRITE_ONCE(test_status.report_found, false); \
137 WRITE_ONCE(test_status.async_fault, false); \