Lines Matching full:should
26 * code should do. KUnit then runs the test and verifies that the code's in example_simple_test()
44 * This test should always be skipped.
48 /* This line should run */ in example_skip_test()
49 kunit_info(test, "You should not see a line below."); in example_skip_test()
52 kunit_skip(test, "this test should be skipped"); in example_skip_test()
54 /* This line should not execute */ in example_skip_test()
55 KUNIT_FAIL(test, "You should not see this line."); in example_skip_test()
59 * This test should always be marked skipped.
63 /* This line should run */ in example_mark_skipped_test()
64 kunit_info(test, "You should see a line below."); in example_mark_skipped_test()
67 kunit_mark_skipped(test, "this test should be skipped"); in example_mark_skipped_test()
69 /* This line should run */ in example_mark_skipped_test()
70 kunit_info(test, "You should see this line."); in example_mark_skipped_test()