From 78812f68242e79a0f6f9be057da703c1a6c3bcb9 Mon Sep 17 00:00:00 2001 From: Paul Colby Date: Tue, 7 Jan 2025 23:16:16 +1100 Subject: [PATCH] Test StatusService with text output --- .github/workflows/build.yaml | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/.github/workflows/build.yaml b/.github/workflows/build.yaml index 9281013b9..bc37084f2 100644 --- a/.github/workflows/build.yaml +++ b/.github/workflows/build.yaml @@ -603,6 +603,12 @@ jobs: copy /v /b src\lib\${{ matrix.dll }} /b test\unit\cli copy /v /b src\lib\${{ matrix.dll }} /b test\unit\lib working-directory: ${{ runner.temp }}/release + - name: Test StatusService + if: matrix.toolchain == 'llvm' + shell: bash + run: | + /d/a/_temp/coverage/test/unit/lib/testStatusService.exe -o output.txt,txt || true + cat output.txt - name: Test w/ coverage # We can't execute arm64 binaries on an x86-64 host. if: matrix.arch != 'arm64' && matrix.toolchain != 'msvc' run: ctest --output-on-failure --test-dir "%RUNNER_TEMP%/coverage" --verbose