Skip to content

Commit 050ac51

Browse files
authored
[SYCL][E2E] Add build-mode and run-mode to list of build-specific features (#17363)
We throw an error if a non build-specific feature is reported as true when in build-only (we expect this to never be the case), so when we do `UNSUPPORTED: build-only` this would make the test unresolved. Also if we don't have `run-mode` marked as a build specific feature when in build-only mode a test marked as `REQUIRES: run-mode` would run, since that feature would be considered "unknown" rather than false.
1 parent 155a0aa commit 050ac51

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

sycl/test-e2e/E2EExpr.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,8 @@
33

44
class E2EExpr(BooleanExpression):
55
build_specific_features = {
6+
"run-mode",
7+
"build-mode",
68
"preview-mode",
79
"target-spir",
810
"target-nvidia",

0 commit comments

Comments
 (0)