this repo has no description

Run with ASAN

authored by bernsteinbear.com and committed by

Max Bernstein 3cca8daf 03e0ac22

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