summaryrefslogtreecommitdiff
path: root/appveyor.yml
diff options
context:
space:
mode:
authorRichard Levitte <levitte@openssl.org>2019-09-11 11:16:53 +0200
committerRichard Levitte <levitte@openssl.org>2019-09-12 14:39:09 +0200
commit799614faa3f921ff6ea49e700cbe8a9fb4febf4c (patch)
treea08e95d4f240d177b3110691aadf740dc415422f /appveyor.yml
parente3d9a6b5f0157d92aa5bbfdb0f95fd55be9a0396 (diff)
downloadopenssl-new-799614faa3f921ff6ea49e700cbe8a9fb4febf4c.tar.gz
Travis and Appveyor: use HARNESS_VERBOSE_FAILURE rather than HARNESS_VERBOSE
This allows for shorter logs, and also logs that only show the details for tests that fail. Reviewed-by: Matt Caswell <matt@openssl.org> (Merged from https://github.com/openssl/openssl/pull/9862)
Diffstat (limited to 'appveyor.yml')
-rw-r--r--appveyor.yml4
1 files changed, 2 insertions, 2 deletions
diff --git a/appveyor.yml b/appveyor.yml
index 24966c0faa..ab4444d640 100644
--- a/appveyor.yml
+++ b/appveyor.yml
@@ -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: >-