From 3941d5844461c79af8e6ee9cd19764fab0a3b742 Mon Sep 17 00:00:00 2001 From: Phil Miller Date: Tue, 25 Jul 2023 12:34:09 -0700 Subject: [PATCH] Suppress container underflow false-positive in GeoPackage test from mixed build --- .github/workflows/test_and_validate.yml | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/.github/workflows/test_and_validate.yml b/.github/workflows/test_and_validate.yml index 976e1b843a..58cb320d9c 100644 --- a/.github/workflows/test_and_validate.yml +++ b/.github/workflows/test_and_validate.yml @@ -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