From 209b159554721186172a22bf8556400f50b8f731 Mon Sep 17 00:00:00 2001 From: Delyan Angelov Date: Sat, 18 Sep 2021 10:05:24 +0300 Subject: [PATCH] ci: fix tests-sanitize-address-msvc job (pass proper `/fsanitize=address` option) --- .github/workflows/ci_sanitized.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/ci_sanitized.yml b/.github/workflows/ci_sanitized.yml index 1cfdd0940d..5963455809 100644 --- a/.github/workflows/ci_sanitized.yml +++ b/.github/workflows/ci_sanitized.yml @@ -159,14 +159,14 @@ jobs: echo %VFLAGS% echo $VFLAGS .\make.bat -msvc - .\v.exe -cflags /WX self + .\v.exe -cflags /fsanitize=address self - name: Install dependencies run: | .\v.exe setup-freetype .\.github\workflows\windows-install-sqlite.bat - - name: Self tests (-fsanitize=address) + - name: Self tests (/fsanitize=address) run: | - .\v.exe -cflags -fsanitize=address test-self + .\v.exe -cflags /fsanitize=address test-self tests-sanitize-address-gcc: needs: no-scheduling