Skip to content

Commit

Permalink
Suppress container underflow false-positive in GeoPackage test from m…
Browse files Browse the repository at this point in the history
…ixed build
  • Loading branch information
PhilMiller authored and mattw-nws committed Jul 26, 2023
1 parent 710b1f9 commit 3941d58
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion .github/workflows/test_and_validate.yml
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,11 @@ jobs:
timeout-minutes: 15

- name: Run GeoPackage Tests
run: ./cmake_build/test/test_geopackage
run: |
# Container underflow report is a false positive, from a build with instrumentation
# disabled in one file where it hangs the compiler (ngen#567)
export ASAN_OPTIONS=${ASAN_OPTIONS}:detect_container_overflow=0
./cmake_build/test/test_geopackage
timeout-minutes: 15

- name: Clean Up
Expand Down

0 comments on commit 3941d58

Please sign in to comment.