We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8d75f1c commit 7f38c67Copy full SHA for 7f38c67
sycl/test-e2e/lit.cfg.py
@@ -246,7 +246,10 @@
246
config.substitutions.append( ('%sycl_be', config.sycl_be) )
247
# Use short names for LIT rules
248
config.available_features.add(config.sycl_be.replace('ext_intel_', '').replace('ext_oneapi_', ''))
249
-config.substitutions.append( ('%BE_RUN_PLACEHOLDER', "env ONEAPI_DEVICE_SELECTOR='{SYCL_PLUGIN}:* '".format(SYCL_PLUGIN=config.sycl_be)) )
+be_run_substitute = "env ONEAPI_DEVICE_SELECTOR='{SYCL_PLUGIN}:* '".format(SYCL_PLUGIN=config.sycl_be)
250
+if config.run_launcher:
251
+ be_run_substitute += " {}".format(config.run_launcher)
252
+config.substitutions.append( ('%BE_RUN_PLACEHOLDER', be_run_substitute) )
253
254
if config.dump_ir_supported:
255
config.available_features.add('dump_ir')
0 commit comments