File tree Expand file tree Collapse file tree 2 files changed +8
-7
lines changed
devops/actions/run-tests/e2e Expand file tree Collapse file tree 2 files changed +8
-7
lines changed Original file line number Diff line number Diff line change 59
59
- name : SYCL End-to-end tests
60
60
shell : bash {0}
61
61
env :
62
- LIT_OPTS : -v --no-progress-bar --show-unsupported --show-pass --show-xfail --max-time 3600 --time-tests --param test-mode=${{ inputs.testing_mode }} --param sycl_devices=${{ inputs.target_devices }} ${{ inputs.extra_lit_opts }}
62
+ LIT_OPTS : -v --no-progress-bar --show-unsupported --show-pass --show-xfail --max-time 3600 --time-tests --param print_features=True --param test-mode=${{ inputs.testing_mode }} --param sycl_devices=${{ inputs.target_devices }} ${{ inputs.extra_lit_opts }}
63
63
run : |
64
64
ninja -C build-e2e check-sycl-e2e > e2e.log 2>&1
65
65
exit_code=$?
Original file line number Diff line number Diff line change @@ -894,12 +894,13 @@ def open_check_file(file_name):
894
894
("%clang" , " " + config .dpcpp_compiler + " " + config .c_flags )
895
895
)
896
896
897
- lit_config .note (
898
- "Global features: {}" .format (" " .join (sorted (config .available_features )))
899
- )
900
- lit_config .note ("Per-device features:" )
901
- for dev , features in config .sycl_dev_features .items ():
902
- lit_config .note ("\t {}: {}" .format (dev , " " .join (sorted (features ))))
897
+ if lit_config .params .get ("print_features" , False ):
898
+ lit_config .note (
899
+ "Global features: {}" .format (" " .join (sorted (config .available_features )))
900
+ )
901
+ lit_config .note ("Per-device features:" )
902
+ for dev , features in config .sycl_dev_features .items ():
903
+ lit_config .note ("\t {}: {}" .format (dev , " " .join (sorted (features ))))
903
904
904
905
# Set timeout for a single test
905
906
try :
You can’t perform that action at this time.
0 commit comments