Home
last modified time | relevance | path

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

12345678910>>...32

/Linux-v6.1/tools/testing/kunit/test_data/
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
/Linux-v6.1/arch/powerpc/perf/
Dhv-gpci-requests.h181 /* Processor_config (0x90) skipped, no counters */
182 /* Current_processor_frequency (0x91) skipped, no counters */
198 /* Processor_core_power_mode (0x95) skipped, no counters */
199 /* Affinity_domain_information_by_virtual_processor (0xA0) skipped,
201 /* Affinity_domain_information_by_domain (0xB0) skipped, no counters */
202 /* Affinity_domain_information_by_partition (0xB1) skipped, no counters */
203 /* Physical_memory_info (0xC0) skipped, no counters */
204 /* Processor_bus_topology (0xD0) skipped, no counters */
259 /* set_mmcrh (0x80001000) skipped, no counters */
260 /* retrieve_hpmcx (0x80002000) skipped, no counters */
Dhv-gpci.h9 * [7 is skipped by spec 1.07]
12 * [4 skipped]
14 * [1,2 skipped]
/Linux-v6.1/drivers/acpi/apei/
Dbert.c51 int printed = 0, skipped = 0; in bert_print_all() local
77 skipped++; in bert_print_all()
91 if (skipped) in bert_print_all()
92 pr_info(HW_ERR "Skipped %d error records\n", skipped); in bert_print_all()
94 if (printed + skipped) in bert_print_all()
95 pr_info("Total records found: %d\n", printed + skipped); in bert_print_all()
/Linux-v6.1/tools/testing/kunit/
Dkunit_parser.py65 SKIPPED = auto() variable in TestStatus
79 skipped : int - the number of tests that have skipped
89 self.skipped = 0
95 ('crashed', self.crashed), ('skipped', self.skipped),
105 self.skipped)
120 self.skipped += counts.skipped
137 # We have only skipped tests.
138 return TestStatus.SKIPPED
146 elif status == TestStatus.SKIPPED:
147 self.skipped += 1
[all …]
/Linux-v6.1/Documentation/dev-tools/
Dktap.rst97 - "SKIP", which indicates a test was skipped (note the result of the test case
134 The test "test" was SKIPPED with the diagnostic message "necessary dependency
264 ok 1 test_1 # SKIP test_1 skipped
272 ok 3 test_3 # SKIP test_3 skipped
285 - "test_1", which is skipped, with the explanation "test_1 skipped"
292 - "test_3", which is skipped with the explanation "test_3 skipped"
297 Skipped tests do not affect the result of the parent test (though it often
298 makes sense for a test to be marked skipped if _all_ of its subtests have been
299 skipped).
/Linux-v6.1/drivers/scsi/fnic/
Dvnic_rq.h172 int skipped, void *opaque), void *opaque) in vnic_rq_service() argument
175 int skipped; in vnic_rq_service() local
180 skipped = (buf->index != completed_index); in vnic_rq_service()
182 (*buf_service)(rq, cq_desc, buf, skipped, opaque); in vnic_rq_service()
189 if (!skipped) in vnic_rq_service()
/Linux-v6.1/drivers/net/ethernet/cisco/enic/
Dvnic_rq.h155 int skipped, void *opaque), void *opaque) in vnic_rq_service() argument
158 int skipped; in vnic_rq_service() local
163 skipped = (buf->index != completed_index); in vnic_rq_service()
165 (*buf_service)(rq, cq_desc, buf, skipped, opaque); in vnic_rq_service()
172 if (!skipped) in vnic_rq_service()
/Linux-v6.1/drivers/usb/misc/
Dusb_u132.h71 int halted, int skipped, int actual, int non_null));
76 int halted, int skipped, int actual, int non_null));
81 int halted, int skipped, int actual, int non_null));
86 int halted, int skipped, int actual, int non_null));
91 int halted, int skipped, int actual, int non_null));
/Linux-v6.1/fs/cachefiles/
Dio.c22 size_t skipped; member
59 ki->skipped += ret; in cachefiles_read_complete()
85 size_t len = iov_iter_count(iter), skipped = 0; in cachefiles_read() local
108 skipped = 0; in cachefiles_read()
123 skipped = len; in cachefiles_read()
128 skipped = off2 - off; in cachefiles_read()
129 iov_iter_zero(skipped, iter); in cachefiles_read()
139 ki->iocb.ki_pos = start_pos + skipped; in cachefiles_read()
142 ki->skipped = skipped; in cachefiles_read()
155 trace_cachefiles_read(object, file_inode(file), ki->iocb.ki_pos, len - skipped); in cachefiles_read()
[all …]
/Linux-v6.1/drivers/usb/mtu3/
Dmtu3_host.c141 /* power on and enable u3 ports except skipped ones */ in ssusb_host_enable()
181 /* power down and disable u3 ports except skipped ones */ in ssusb_host_disable()
191 /* power down and disable u2 ports except skipped ones */ in ssusb_host_disable()
226 /* power on u3 ports except skipped ones */ in ssusb_host_resume()
236 /* power on all u2 ports except skipped ones */ in ssusb_host_resume()
258 /* power down u3 ports except skipped ones */ in ssusb_host_suspend()
268 /* power down u2 ports except skipped ones */ in ssusb_host_suspend()
/Linux-v6.1/tools/testing/selftests/nolibc/
Dnolibc-test.c133 do { if (!cond) pad_spc(llen, 40, "[SKIPPED]\n"); else ret += expect_zr(expr, llen); } while (0)
146 do { if (!cond) pad_spc(llen, 40, "[SKIPPED]\n"); else ret += expect_nz(expr, llen; } while (0)
159 …do { if (!cond) pad_spc(llen, 40, "[SKIPPED]\n"); else ret += expect_eq(expr, llen, val); } while …
172 …do { if (!cond) pad_spc(llen, 40, "[SKIPPED]\n"); else ret += expect_ne(expr, llen, val); } while …
185 …do { if (!cond) pad_spc(llen, 40, "[SKIPPED]\n"); else ret += expect_ge(expr, llen, val); } while …
198 …do { if (!cond) pad_spc(llen, 40, "[SKIPPED]\n"); else ret += expect_gt(expr, llen, val); } while …
211 …do { if (!cond) pad_spc(llen, 40, "[SKIPPED]\n"); else ret += expect_le(expr, llen, val); } while …
224 …do { if (!cond) pad_spc(llen, 40, "[SKIPPED]\n"); else ret += expect_lt(expr, llen, val); } while …
237 do { if (!cond) pad_spc(llen, 40, "[SKIPPED]\n"); else ret += expect_syszr(expr, llen); } while (0)
256 …do { if (!cond) pad_spc(llen, 40, "[SKIPPED]\n"); else ret += expect_syseq(expr, llen, val); } whi…
[all …]
/Linux-v6.1/tools/testing/selftests/lkdtm/
Drun.sh5 # with a leading "#" are skipped. The rest of the line after the
7 # or the rationale for why a test is marked to be skipped.
31 echo "Skipped: missing test '$test' in tests.txt"
36 echo "Skipped: test '$test' missing in $TRIGGER!"
/Linux-v6.1/tools/perf/tests/shell/
Drecord.sh26 echo "Per-thread record [Skipped instructions:u not supported]"
52 echo "Register capture test [Skipped missing instruction]"
61 echo "Register capture test [Skipped missing registers]"
Dstat.sh36 echo "stat repeat weak groups test [Skipped event parsing failed]"
55 echo "Topdown event group test [Skipped event parsing failed]"
81 echo "Topdown weak groups test [Skipped event parsing failed]"
/Linux-v6.1/tools/testing/selftests/amd-pstate/
Damd-pstate-ut.sh22 echo "$0 # Skipped: Test can only run on x86 architectures."
27 echo "$0 # Skipped: Test can only run on AMD CPU."
34 echo "$0 # Skipped: Test can only run on amd-pstate driver."
/Linux-v6.1/tools/testing/selftests/bpf/prog_tests/
Dringbuf_multi.c96 /* trigger few samples, some will be skipped */ in test_ringbuf_multi()
101 /* skipped, no ringbuf in slot 1 */ in test_ringbuf_multi()
122 CHECK(skel->bss->skipped != 1, "err_skipped", "exp %ld, got %ld\n", in test_ringbuf_multi()
123 1L, skel->bss->skipped); in test_ringbuf_multi()
/Linux-v6.1/drivers/media/pci/cx18/
Dcx18-queue.c51 mdl->skipped = 0; in _cx18_enqueue()
82 mdl->skipped = 0; in cx18_dequeue()
150 mdl->skipped++; in cx18_queue_get_mdl()
151 if (mdl->skipped >= atomic_read(&s->q_busy.depth)-1) { in cx18_queue_get_mdl()
153 CX18_WARN("Skipped %s, MDL %d, %d times - it must have dropped out of rotation\n", in cx18_queue_get_mdl()
155 mdl->skipped); in cx18_queue_get_mdl()
179 ret->skipped = 0; in cx18_queue_get_mdl()
212 mdl->skipped = 0; in cx18_queue_flush()
/Linux-v6.1/lib/kunit/
Dkunit-example-test.c55 * This test should always be skipped.
63 kunit_skip(test, "this test should be skipped"); in example_skip_test()
70 * This test should always be marked skipped.
78 kunit_mark_skipped(test, "this test should be skipped"); in example_mark_skipped_test()
Dtest.c81 unsigned long skipped; member
109 stats.skipped, in kunit_print_test_stats()
470 suite_stats.skipped, in kunit_print_suite_stats()
479 param_stats.skipped, in kunit_print_suite_stats()
492 stats->skipped++; in kunit_update_stats()
506 total->skipped += add.skipped; in kunit_accumulate_stats()
/Linux-v6.1/drivers/cxl/core/
Dhdm.c207 resource_size_t skipped) in __cxl_dpa_reserve() argument
238 if (skipped) { in __cxl_dpa_reserve()
239 res = __request_region(&cxlds->dpa_res, base - skipped, skipped, in __cxl_dpa_reserve()
243 "decoder%d.%d: failed to reserve skipped space\n", in __cxl_dpa_reserve()
253 if (skipped) in __cxl_dpa_reserve()
254 __release_region(&cxlds->dpa_res, base - skipped, in __cxl_dpa_reserve()
255 skipped); in __cxl_dpa_reserve()
259 cxled->skip = skipped; in __cxl_dpa_reserve()
279 resource_size_t skipped) in devm_cxl_dpa_reserve() argument
285 rc = __cxl_dpa_reserve(cxled, base, len, skipped); in devm_cxl_dpa_reserve()
/Linux-v6.1/virt/kvm/
Dbinary_stats.c79 * The copy of the header would be skipped if offset is larger than the in kvm_stats_read()
100 * header part and could be skipped for later descriptors and stats in kvm_stats_read()
116 * The descriptors copy would be skipped in the typical case that in kvm_stats_read()
/Linux-v6.1/tools/testing/selftests/bpf/progs/
Dtest_ringbuf_multi.c54 long skipped = 0; variable
69 skipped += 1; in test_ringbuf()
/Linux-v6.1/Documentation/networking/
Dfib_trie.rst28 Path Compression / skipped bits
33 in the key skipped over because they represent a single path with no
34 deviations. These "skipped bits" constitute Path Compression.
/Linux-v6.1/tools/testing/selftests/tc-testing/plugin-lib/
DvalgrindPlugin.py43 res = TestResult('{}-mem'.format(self.testidlist[xx]), 'Test skipped')
45 res.set_errormsg('Skipped because of prior setup/teardown failure')
109 res.set_errormsg('Test case designated as skipped.')

12345678910>>...32