Re: [igt-dev] [i-g-t v2] tests/i915/perf: Added check for testcase to get discarded on less than gen12 platform
From: Lionel Landwerlin <hidden>
Date: 2021-03-26 12:15:21
On 26/03/2021 12:53, Ram Moon, AnandX wrote:
Hi All, -----Original Message----- From: Landwerlin, Lionel G <redacted> Sent: Friday, March 26, 2021 3:38 PM To: Ram Moon, AnandX <redacted>; igt-dev@lists.freedesktop.org; Nerlige Ramappa, Umesh <redacted>; Latvala, Petri <redacted> Subject: Re: [i-g-t v2] tests/i915/perf: Added check for testcase to get discarded on less than gen12 platform On 26/03/2021 11:03, Anand Moon wrote:quoted
Added check for testcase to get discarded on less than gen12 platform v2: Added check in gen12 sub testcase to return. Cc: Lionel Landwerlin <redacted> Cc: Umesh Nerlige Ramappa <redacted> Signed-off-by: Anand Moon <redacted> --- tests/i915/perf.c | 11 +++++++++-- 1 file changed, 9 insertions(+), 2 deletions(-)diff --git a/tests/i915/perf.c b/tests/i915/perf.c index664fd0a9..b78a714e 100644--- a/tests/i915/perf.c +++ b/tests/i915/perf.c@@ -2389,6 +2389,9 @@ gen12_test_oa_tlb_invalidate(void) int num_reports1, num_reports2, num_expected_reports; int64_t duration; +if (intel_gen(devid) < 12) +return; + /* Capture reports for 5 seconds twice and then make sure you get around * the same number of reports. In the case of failure, the number of * reports will vary largely since the beginning of the OA buffer@@ -3003,6 +3006,9 @@ gen12_test_mi_rpc(void) size_t format_size_32; struct oa_format format = get_oa_format(test_set->perf_oa_format); +if (intel_gen(devid) < 12) +return; + /* Ensure perf_stream_paranoid is set to 1 by default */ write_u64_file("/proc/sys/dev/i915/perf_stream_paranoid", 1);@@ -4115,6 +4121,9 @@ gen12_test_single_ctx_render_target_writes_a_counter(void) int child_ret; struct igt_helper_process child = {}; +if (intel_gen(devid) < 12) +return; + /* Ensure perf_stream_paranoid is set to 1 by default */ write_u64_file("/proc/sys/dev/i915/perf_stream_paranoid", 1);@@ -5062,8 +5071,6 @@ igt_main } igt_subtest_group { -igt_fixture igt_require(intel_gen(devid) >= 12); - igt_describe("Test MI REPORT PERF COUNT for Gen 12"); igt_subtest("gen12-mi-rpc") gen12_test_mi_rpc();Could you maybe explain how those tests are run on gen < 12 when there is a igt_fixture igt_require(intel_gen(devid) >= 12); that is supposed to prevent that from happening? On EHL gen11 platform I am observing following when we run this test case. gta@DUT057-EHL:~/anand_devel/igt-gpu-tools/build/tests$ sudo ./perf --r stress-open-close IGT-Version: 1.25-ge7603927 (x86_64) (Linux: 5.12.0-rc4-9900 x86_64) Test requirement not met in function __real_main4900, file ../tests/i915/perf.c:5065: Test requirement: intel_gen(devid) >= 12 Last errno: 2, No such file or directory Starting subtest: stress-open-close Subtest stress-open-close: SUCCESS (2.256s)
Not sure I see where the issue is here. The stress-open-close test is passing and there are some warnings about a requirement not met above. But as far as I know requirements are the way to tell whether a test can be run or not. -Lionel
So in order to fix this issue I propose to add below code in subtest. igt_skip_on(intel_gen(devid) < 12); So that the testcase will changes from SUCCESS to SKIP. Is this ok with you. Subtest gen8-unprivileged-single-ctx-counters: SUCCESS (0.197s) Starting subtest: gen12-mi-rpc Test requirement not met in function gen12_test_mi_rpc, file ../tests/i915/perf.c:3008: Test requirement: !(intel_gen(devid) < 12) Subtest gen12-mi-rpc: SKIP (0.000s) Starting subtest: gen12-oa-tlb-invalidate Test requirement not met in function gen12_test_oa_tlb_invalidate, file ../tests/i915/perf.c:2392: Test requirement: !(intel_gen(devid) < 12) Subtest gen12-oa-tlb-invalidate: SKIP (0.000s) Starting subtest: gen12-unprivileged-single-ctx-counters Test requirement not met in function gen12_test_single_ctx_render_target_writes_a_counter, file ../tests/i915/perf.c:4122: Test requirement: !(intel_gen(devid) < 12) Subtest gen12-unprivileged-single-ctx-counters: SKIP (0.000s) Thanks -Anand Thanks, -Lionel
_______________________________________________ igt-dev mailing list igt-dev@lists.freedesktop.org https://lists.freedesktop.org/mailman/listinfo/igt-dev