X-Git-Url: https://git.openssl.org/gitweb/?p=openssl.git;a=blobdiff_plain;f=appveyor.yml;h=cca4a9a21cdb7fced9d828ee600e3c62b6ec43cb;hp=24966c0faa5ce46f5ba49c6f048a5ca37b93b8ab;hb=5d61758ee70aebb479d6f7a43483af405c0031a2;hpb=986caf9e34fd60366a5b3711bb12e239e43a2431 diff --git a/appveyor.yml b/appveyor.yml index 24966c0faa..cca4a9a21c 100644 --- a/appveyor.yml +++ b/appveyor.yml @@ -15,7 +15,7 @@ before_build: - ps: >- If ($env:Platform -Match "x86") { $env:VCVARS_PLATFORM="x86" - $env:TARGET="VC-WIN32 no-asm" + $env:TARGET="VC-WIN32 no-asm --strict-warnings" } Else { $env:VCVARS_PLATFORM="amd64" $env:TARGET="VC-WIN64A-masm" @@ -53,9 +53,9 @@ test_script: - ps: >- If ($env:Configuration -Match "shared" -or $env:EXTENDED_TESTS) { if ($env:EXTENDED_TESTS) { - cmd /c "nmake test V=1 2>&1" + cmd /c "nmake test HARNESS_VERBOSE_FAILURE=yes 2>&1" } Else { - cmd /c "nmake test V=1 TESTS=-test_fuzz 2>&1" + cmd /c "nmake test HARNESS_VERBOSE_FAILURE=yes TESTS=-test_fuzz 2>&1" } } - ps: >-