this repo has no description

Run with UBSAN

authored by bernsteinbear.com and committed by

Max Bernstein bdcbb1cf 3cca8daf

+4
+4
.github/workflows/ci.yml
··· 55 55 run: CC=${{matrix.CC}} CFLAGS=-fsanitize=address ${{matrix.PYTHON}} compiler_tests.py 56 56 - name: Run compiler tests with static heap with ASAN 57 57 run: CC=${{matrix.CC}} CFLAGS="-DSTATIC_HEAP -fsanitize=address" ${{matrix.PYTHON}} compiler_tests.py 58 + - name: Run compiler tests with UBSAN 59 + run: CC=${{matrix.CC}} CFLAGS=-fsanitize=undefined ${{matrix.PYTHON}} compiler_tests.py 60 + - name: Run compiler tests with static heap with UBSAN 61 + run: CC=${{matrix.CC}} CFLAGS="-DSTATIC_HEAP -fsanitize=undefined" ${{matrix.PYTHON}} compiler_tests.py 58 62 build_docker_image: 59 63 runs-on: ubuntu-latest 60 64 permissions: