From 89b628d34b1ef0423df35a72901daa194d7db956 Mon Sep 17 00:00:00 2001 From: jvoisin Date: Tue, 28 Oct 2025 21:33:16 +0100 Subject: Fix the CI on clang Apparently, clang doesn't like the `putwchar` function for no good reason. Replacing it with `printf` fixes a NULL-ptr deref, so let's do that, as we don't really care about the content of the buffer anyway, only that it's not optimized away. --- .github/workflows/testsuite.yaml | 1 - 1 file changed, 1 deletion(-) (limited to '.github/workflows') diff --git a/.github/workflows/testsuite.yaml b/.github/workflows/testsuite.yaml index 7870ad1..6ceb3bd 100644 --- a/.github/workflows/testsuite.yaml +++ b/.github/workflows/testsuite.yaml @@ -74,7 +74,6 @@ jobs: run: make CFLAGS=-DUSE_NATIVE_CHK -C tests clang - name: Building and running without native chk if: ${{ matrix.use_native_chk == false }} - continue-on-error: true shell: bash run: | make -C tests clean clang run > ./results.txt -- cgit v1.3