Skip to content

Commit 59cd752

Browse files
authored
Merge pull request #2285 from RossBrunton/ross/confclean
[NFC] Clean up match files for conf. testing
2 parents e6e300a + a1c9555 commit 59cd752

File tree

55 files changed

+852
-1968
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

55 files changed

+852
-1968
lines changed

scripts/core/CONTRIB.rst

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -393,8 +393,6 @@ The format of the match files are as follows:
393393
matches a single character.
394394
* Empty lines or lines beginning with ``#`` are ignored.
395395
* A line beginning with ``{{OPT}}`` is a optional test; see below.
396-
* For compatibility with an older version of the matching logic, ``{{.*}}`` is
397-
interpreted as ``*`` and ``{{NONDETERMINISTIC}}`` is ignored.
398396

399397
Normally tests in the match file must fail (either by crashing or having a test
400398
failure) for the given adapter. However this can be disabled by prepending

test/conformance/adapter/adapter_adapter_native_cpu.match

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
1-
{{NONDETERMINISTIC}}
21
# These pass when the adapter is launched by the loader
32
{{OPT}}urAdapterGetLastErrorTest.Success
43
{{OPT}}urAdapterGetLastErrorTest.InvalidHandle
Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,2 +1 @@
1-
{{NONDETERMINISTIC}}
2-
{{OPT}}urContextSetExtendedDeleterTest.Success/Intel_R__oneAPI_Unified_Runtime_over_Level_Zero___{{.*}}_
1+
{{OPT}}urContextSetExtendedDeleterTest.Success/*
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
{{OPT}}urContextSetExtendedDeleterTest.Success/Intel_R__oneAPI_Unified_Runtime_over_Level_Zero___{{.*}}__
1+
{{OPT}}urContextSetExtendedDeleterTest.Success/*
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
{{OPT}}urContextSetExtendedDeleterTest.Success/SYCL_NATIVE_CPU___SYCL_Native_CPU__{{.*}}
1+
{{OPT}}urContextSetExtendedDeleterTest.Success/*

test/conformance/cts_exe.py

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -146,12 +146,9 @@ def _run_cmd(cmd, comment, filter):
146146
for l in f:
147147
optional = "{{OPT}}" in l
148148
l = l.replace("{{OPT}}", "")
149-
l = l.replace("{{.*}}", "*")
150149

151150
if l.startswith("#"):
152151
continue
153-
if l.startswith("{{NONDETERMINISTIC}}"):
154-
continue
155152
if l.strip() == "":
156153
continue
157154

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1 @@
1-
{{NONDETERMINISTIC}}
21
{{OPT}}urDeviceGetGlobalTimestampTest.SuccessSynchronizedTime
Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1 @@
1-
{{NONDETERMINISTIC}}
21
{{OPT}}urDeviceGetGlobalTimestampTest.SuccessSynchronizedTime
Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1 @@
1-
{{NONDETERMINISTIC}}
21
{{OPT}}urDeviceGetGlobalTimestampTest.SuccessSynchronizedTime
Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,2 @@
1-
{{NONDETERMINISTIC}}
21
{{OPT}}urDeviceGetGlobalTimestampTest.SuccessSynchronizedTime
32
{{OPT}}urDeviceGetInfoTest.Success/UR_DEVICE_INFO_GLOBAL_MEM_FREE

0 commit comments

Comments
 (0)