Home
last modified time | relevance | path

Searched refs:ksft_true (Results 1 – 6 of 6) sorted by relevance

/linux-6.15/tools/testing/selftests/net/
H A Dlink_netns.py6 from lib.py import ksft_run, ksft_exit, ksft_true
31 ksft_true(rtnl.async_msg_queue.empty(),
86 ksft_true(validate_link_netns(tgt_net, "foo", exp1),
89 ksft_true(validate_link_netns(tgt_net, "foo", exp2),
130 ksft_true(validate_link_netns(tgt_net, "foo", exp),
/linux-6.15/tools/testing/selftests/drivers/net/hw/
H A Dnic_performance.py36 from lib.py import ksft_run, ksft_exit, ksft_pr, ksft_true
110ksft_true(send_throughput[idx] >= send_threshold, f"{protocol}: Send throughput is below threshold…
111ksft_true(receive_throughput[idx] >= receive_threshold, f"{protocol}: Receive throughput is below …
H A Drss_ctx.py8 from lib.py import ksft_eq, ksft_ne, ksft_ge, ksft_in, ksft_lt, ksft_true, ksft_raises
113 ksft_true(re.search(pattern, text), "RSS context not referenced in ntuple rule")
/linux-6.15/tools/testing/selftests/drivers/net/
H A Dstats.py8 from lib.py import ksft_ge, ksft_eq, ksft_is, ksft_in, ksft_lt, ksft_true, ksft_raises
32 ksft_true(data['stats'], "driver does not report stats")
47 ksft_true(data['stats'], "driver does not report stats")
H A Dshaper.py4 from lib.py import ksft_run, ksft_exit, ksft_eq, ksft_true, KsftSkipEx
31 ksft_true(len(caps)> 0)
321 ksft_true(nested_node_id != node_id)
/linux-6.15/tools/testing/selftests/net/lib/py/
H A Dksft.py64 def ksft_true(a, comment=""): function