diff options
| author | jvoisin | 2025-10-28 21:33:16 +0100 |
|---|---|---|
| committer | jvoisin | 2025-10-28 21:54:31 +0100 |
| commit | 89b628d34b1ef0423df35a72901daa194d7db956 (patch) | |
| tree | 2163e0ab79f62766a09c7057ccb508f6c60a064a /.github | |
| parent | a826c69242b0e87a4e5d6817b7e46ab3cdbe6284 (diff) | |
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.
Diffstat (limited to '.github')
| -rw-r--r-- | .github/workflows/testsuite.yaml | 1 |
1 files changed, 0 insertions, 1 deletions
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: | |||
| 74 | run: make CFLAGS=-DUSE_NATIVE_CHK -C tests clang | 74 | run: make CFLAGS=-DUSE_NATIVE_CHK -C tests clang |
| 75 | - name: Building and running without native chk | 75 | - name: Building and running without native chk |
| 76 | if: ${{ matrix.use_native_chk == false }} | 76 | if: ${{ matrix.use_native_chk == false }} |
| 77 | continue-on-error: true | ||
| 78 | shell: bash | 77 | shell: bash |
| 79 | run: | | 78 | run: | |
| 80 | make -C tests clean clang run > ./results.txt | 79 | make -C tests clean clang run > ./results.txt |
