Home
last modified time | relevance | path

Searched refs:skipped (Results 1 – 25 of 25) sorted by relevance

/tools/testing/kunit/test_data/
A Dtest_skip_all_tests.log5 ok 1 - string_stream_test_empty_on_creation # SKIP all tests skipped
6 ok 2 - string_stream_test_not_empty_after_add # SKIP all tests skipped
7 ok 3 - string_stream_test_get_string # SKIP all tests skipped
12 ok 1 - example_simple_test # SKIP all tests skipped
14 ok 2 - example_skip_test # SKIP this test should be skipped
A Dtest_skip_tests.log14 ok 2 - example_skip_test # SKIP this test should be skipped
/tools/testing/selftests/bpf/progs/
A Dtest_ringbuf_multi.c54 long skipped = 0; variable
68 skipped += 1; in test_ringbuf()
/tools/testing/selftests/sched_ext/
A Drunner.c129 unsigned passed = 0, skipped = 0, failed = 0; in main() local
190 skipped++; in main()
200 printf("SKIPPED: %u\n", skipped); in main()
/tools/testing/selftests/x86/bugs/
A Dits_ret_alignment.py85 passed = unknown = failed = skipped = False
109 skipped = True variable
114 elif skipped:
/tools/perf/tests/shell/
A Drecord.sh326 local -i skipped=0
340 ((skipped+=1))
354 ((skipped+=1))
356 if [ $skipped -eq 2 ]
/tools/testing/selftests/bpf/prog_tests/
A Dringbuf_multi.c137 CHECK(skel->bss->skipped != 1, "err_skipped", "exp %ld, got %ld\n", in test_ringbuf_multi()
138 1L, skel->bss->skipped); in test_ringbuf_multi()
/tools/testing/selftests/net/tcp_ao/lib/
A Dsetup.c55 static volatile int skipped; variable
66 } else if (skipped) { in test_exit()
222 skipped = 1; in __test_skip_all()
/tools/testing/kunit/
A Dkunit_parser.py84 skipped: int = 0 variable in TestCounts
90 ('crashed', self.crashed), ('skipped', self.skipped),
100 self.skipped)
115 self.skipped += counts.skipped
142 self.skipped += 1
A Dkunit_json.py48 "skipped": test_counts.skipped,
A Dkunit_tool_test.py227 self.assertEqual(result.counts, kunit_parser.TestCounts(passed=4, skipped=1))
235 self.assertEqual(result.counts, kunit_parser.TestCounts(skipped=5))
/tools/testing/selftests/arm64/
A DREADME4 - These tests are arm64 specific and so not built or run but just skipped
/tools/power/pm-graph/config/
A Dcgskip.txt5 # meant to be skipped in the callgraph trace. It reduces
/tools/testing/selftests/tc-testing/creating-testcases/
A DAddingTestCases.txt39 marked as skipped. This key can be placed anywhere inside the
42 is skipped when the command returns non-zero.
83 in the test cases. tdc will output a series of TAP results for the skipped
/tools/testing/selftests/bpf/
A Dtest_progs.c340 static char *test_result(bool failed, bool skipped) in test_result() argument
342 return failed ? "FAIL" : (skipped ? "SKIP" : "OK"); in test_result()
458 subtest_state->skipped)); in dump_test_log()
528 if (!subtest_state->skipped) in test__end_subtest()
538 subtest_state->skipped)); in test__end_subtest()
611 env.subtest_state->skipped = true; in test__skip()
1481 subtest_state->skipped = msg.subtest_done.skipped; in dispatch_thread_send_subtests()
1803 msg.subtest_done.skipped = subtest_state->skipped; in worker_main_send_subtests()
A Dtest_progs.h75 bool skipped; member
173 bool skipped; member
A Dtest_sockmap.c576 int skipped; in msg_verify_data() local
578 skipped = push; in msg_verify_data()
580 skipped = msg->msg_iov[i].iov_len - j; in msg_verify_data()
581 push -= skipped; in msg_verify_data()
582 size -= skipped; in msg_verify_data()
583 j += skipped - 1; in msg_verify_data()
584 check_cnt += skipped; in msg_verify_data()
A DREADME.rst247 them to Clang/LLVM. These sub-tests are going to be skipped if Clang is too
291 Without them, the btf_tag selftest will be skipped and you will observe:
/tools/testing/selftests/tc-testing/creating-plugins/
A DAddingPlugins.txt46 rest of the tests must be skipped. The info is stored in the object,
47 and the post_suite method can refer to it when dumping the "skipped"
/tools/lib/bpf/
A Dlinker.c41 bool skipped; member
766 sec->skipped = true; in linker_load_obj_file()
791 sec->skipped = true; in linker_load_obj_file()
802 sec->skipped = true; in linker_load_obj_file()
1021 if (link_sec->skipped) in linker_sanity_check_elf_relos()
1339 if (!sec || sec->skipped) in is_data_sec()
1349 if (!sec || sec->skipped || sec->ephemeral) in is_relo_sec()
1389 src_sec->skipped = true; in linker_append_sec_data()
2020 if (src_sec->skipped) in linker_append_elf_sym()
2211 if (src_linked_sec->skipped) in linker_append_elf_relos()
[all …]
/tools/testing/selftests/rcutorture/bin/
A Dkvm-test-1-run.sh199 echo Some of the above steps may be skipped if you build your bare-metal >> $resdir/bare-metal
/tools/build/
A DBuild.include57 # PHONY targets skipped in both cases.
/tools/objtool/Documentation/
A Dobjtool.txt147 of the first function will be skipped on the stack trace.
177 skipped. Instead the stack trace seems to show that
182 skipped on a stack trace.
231 function B, the _caller_ of function A will be skipped on the stack
/tools/perf/util/
A Dprobe-event.c849 int i, skipped = 0; in post_process_kernel_probe_trace_events() local
878 skipped++; in post_process_kernel_probe_trace_events()
894 return skipped; in post_process_kernel_probe_trace_events()
3126 int ret, i, j, skipped = 0; in find_probe_trace_events_from_map() local
3226 skipped++; in find_probe_trace_events_from_map()
3273 if (ret == skipped) { in find_probe_trace_events_from_map()
/tools/testing/selftests/tc-testing/
A DREADME159 This allows you to dump out the list of skipped tests in the event of a

Completed in 47 milliseconds