aboutsummaryrefslogtreecommitdiff
path: root/.github/workflows
diff options
context:
space:
mode:
authorJia Tan <jiat0218@gmail.com>2023-09-14 21:13:23 +0800
committerJia Tan <jiat0218@gmail.com>2023-09-14 21:43:34 +0800
commit953e775941a25bfcfa353f802b13e66acb1edf2c (patch)
tree7a7b5adebb3457df95da502e0dd42214541184a9 /.github/workflows
parentUpdate THANKS. (diff)
downloadxz-953e775941a25bfcfa353f802b13e66acb1edf2c.tar.xz
CI: Enable CLMUL in address sanitization test.
The crc64_clmul() function should be ignored by the address sanitizer now so these builds should still pass.
Diffstat (limited to '.github/workflows')
-rw-r--r--.github/workflows/ci.yml12
1 files changed, 4 insertions, 8 deletions
diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml
index f2e8c70a..79ceb141 100644
--- a/.github/workflows/ci.yml
+++ b/.github/workflows/ci.yml
@@ -78,19 +78,15 @@ jobs:
./build-aux/ci_build.sh -b autotools -p test -f "-m32" -n 32_bit
cd ../xz_build && make distclean
- # ifunc and clmul must be disabled for this test because they will
- # fail with -fsanitize=address. __attribute__ ifunc is incompatible
- # with -fsanitize=address.CLMUL optimizations will read past the
- # bounds of small buffers and mask out the unneeded values. This
- # triggers -fsanitize=address to report an error even though the
- # operation is safe.
+ # ifunc must be disabled for this test because __attribute__ ifunc is
+ # incompatible with -fsanitize=address.
- name: Build with -fsanitize=address,undefined
if: ${{ matrix.os == 'ubuntu-latest' && matrix.build_system == 'autotools' }}
- run: ./build-aux/ci_build.sh -b autotools -p build -f "-fsanitize=address,undefined" -d ifunc,clmul
+ run: ./build-aux/ci_build.sh -b autotools -p build -f "-fsanitize=address,undefined" -d ifunc
- name: Test with -fsanitize=address,undefined
if: ${{ matrix.os == 'ubuntu-latest' && matrix.build_system == 'autotools' }}
run: |
- ./build-aux/ci_build.sh -b autotools -p test -f "-fsanitize=address,undefined" -d ifunc,clmul
+ ./build-aux/ci_build.sh -b autotools -p test -f "-fsanitize=address,undefined" -d ifunc
cd ../xz_build && make distclean
- name: Build with full features