Skip to content

Commit 8fbaf27

Browse files
authored
fix: no separate test exec for (#127) (#130)
Related to commit cf41a5a Signed-off-by: Bagria, Narendra <[email protected]>
1 parent 19bf641 commit 8fbaf27

File tree

2 files changed

+1
-16
lines changed

2 files changed

+1
-16
lines changed

conformance_tests/tools/metrics/CMakeLists.txt

Lines changed: 0 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -7,18 +7,6 @@ add_lzt_test(
77
SOURCES
88
src/test_metric_utils.cpp
99
src/test_metric.cpp
10-
src/main.cpp
11-
LINK_LIBRARIES
12-
level_zero_tests::logging
13-
level_zero_tests::utils
14-
KERNELS
15-
ze_matrix_multiplication_metrics
16-
)
17-
add_lzt_test(
18-
NAME test_metric_tracer_and_programmable
19-
GROUP "/conformance_tests/tools/metrics"
20-
SOURCES
21-
src/test_metric_utils.cpp
2210
src/test_metric_tracer.cpp
2311
src/test_metric_programmable.cpp
2412
src/main.cpp

scripts/level_zero_report_utils.py

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -296,8 +296,6 @@ def assign_tool_test_feature(test_binary: str, test_name: str):
296296
test_feature = "SysMan Perf Profiles"
297297
elif test_binary == "test_metric":
298298
test_feature = "Metrics"
299-
elif test_binary == "test_metric_tracer_and_programmable":
300-
test_feature = "Metrics"
301299
elif (re.search('debug', test_binary, re.IGNORECASE)):
302300
test_feature = "Program Debug"
303301
elif test_binary == "test_sysman_ecc":
@@ -315,8 +313,7 @@ def assign_test_feature(test_binary: str, test_name: str):
315313
or (re.search('tracing', test_name, re.IGNORECASE)) \
316314
or (re.search('sysman', test_binary, re.IGNORECASE)) \
317315
or (re.search('debug', test_binary, re.IGNORECASE)) \
318-
or (test_binary == "test_metric") \
319-
or (test_binary == "test_metric_tracer_and_programmable"):
316+
or (test_binary == "test_metric"):
320317
test_feature = assign_tool_test_feature(test_binary, test_name)
321318
test_section = "Tools"
322319
return test_feature, test_section

0 commit comments

Comments
 (0)