Skip to content

Commit 0f47e44

Browse files
authored
Merge pull request #651 from myler/CMPLRTST-15663-test-driver
CMPLRTST-15663: add 'matrix-pvc' support in test driver.
2 parents 227fbfb + f9f0df3 commit 0f47e44

File tree

2 files changed

+4
-0
lines changed

2 files changed

+4
-0
lines changed

SYCL/lit.cfg.py

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -100,6 +100,9 @@
100100
if lit_config.params.get('matrix', False):
101101
config.available_features.add('matrix')
102102

103+
if lit_config.params.get('matrix-pvc', False):
104+
config.available_features.add('matrix-pvc')
105+
103106
#support for LIT parameter ze_debug<num>
104107
if lit_config.params.get('ze_debug'):
105108
config.ze_debug = lit_config.params.get('ze_debug')

llvm_test_suite_sycl.pl

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -535,6 +535,7 @@ sub do_run
535535
$matrix = "-Dmatrix=1";
536536
$jobset = "-j 1";
537537
} elsif ( is_pvc() ) {
538+
$matrix = "-Dmatrix-pvc=1";
538539
$timeset = "--timeout 1800";
539540
$jobset = "";
540541
}

0 commit comments

Comments
 (0)