From 3657bd9225fe03767bb03ff2323528c848615af7 Mon Sep 17 00:00:00 2001 From: Nick Sarnie Date: Tue, 16 Jul 2024 16:08:35 +0000 Subject: [PATCH] [CI] Make Windows LIT_OPTS match Linux (#14583) The `LIT_OPTS` were different compared to Linux so the output logs from CI runs is different. I noticed this when searching for passed tests in the Windows log and noticed it wasn't there. Signed-off-by: Sarnie, Nick --- .github/workflows/sycl-windows-run-tests.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/sycl-windows-run-tests.yml b/.github/workflows/sycl-windows-run-tests.yml index c632b56867b0..d61425eb6144 100644 --- a/.github/workflows/sycl-windows-run-tests.yml +++ b/.github/workflows/sycl-windows-run-tests.yml @@ -84,7 +84,7 @@ jobs: shell: bash run: | # Run E2E tests. - export LIT_OPTS="-v --no-progress-bar --show-unsupported --max-time 3600 --time-tests ${{ inputs.extra_lit_opts }}" + export LIT_OPTS="-v --no-progress-bar --show-unsupported --show-pass --show-xfail --max-time 3600 --time-tests ${{ inputs.extra_lit_opts }}" cmake --build build-e2e --target check-sycl-e2e - name: Cleanup shell: cmd