Windows CI: properly drop test_fuzz* tests to speed up things
authorTomas Mraz <tomas@openssl.org>
Mon, 24 May 2021 13:47:26 +0000 (15:47 +0200)
committerTomas Mraz <tomas@openssl.org>
Tue, 25 May 2021 09:53:36 +0000 (11:53 +0200)
Reviewed-by: Paul Dale <pauli@openssl.org>
Reviewed-by: Shane Lontis <shane.lontis@oracle.com>
(Merged from https://github.com/openssl/openssl/pull/15433)

.github/workflows/windows.yml

index 80dfb7921c830a5a00afe95895a6080dae02137a..0d0b594808009a84488031f626abba5ccaabad7f 100644 (file)
@@ -32,7 +32,7 @@ jobs:
       run: nmake
     - name: test
       working-directory: _build
-      run: nmake test VERBOSE_FAILURE=yes TESTS=-test_fuzz
+      run: nmake test VERBOSE_FAILURE=yes TESTS=-test_fuzz*
     - name: install
       # Run on 64 bit only as 32 bit is slow enough already
       if: $${{ matrix.arch == 'win64' }}
@@ -57,7 +57,7 @@ jobs:
       run: nmake
     - name: test
       working-directory: _build
-      run: nmake test VERBOSE_FAILURE=yes TESTS=-test_fuzz
+      run: nmake test VERBOSE_FAILURE=yes TESTS=-test_fuzz*
   minimal:
     runs-on: windows-latest
     steps:
@@ -75,4 +75,4 @@ jobs:
       run: nmake
     - name: test
       working-directory: _build
-      run: nmake test VERBOSE_FAILURE=yes TESTS=-test_fuzz
+      run: nmake test VERBOSE_FAILURE=yes TESTS=-test_fuzz*