]> git.ipfire.org Git - thirdparty/openssl.git/commitdiff
Disable the test_afalg on cross compile targets
authorTomas Mraz <tomas@openssl.org>
Tue, 22 Mar 2022 15:43:47 +0000 (16:43 +0100)
committerTomas Mraz <tomas@openssl.org>
Wed, 23 Mar 2022 11:46:08 +0000 (12:46 +0100)
The afalg engine does not work when run through qemu.

Reviewed-by: Matt Caswell <matt@openssl.org>
Reviewed-by: Paul Dale <pauli@openssl.org>
(Merged from https://github.com/openssl/openssl/pull/17945)

.github/workflows/cross-compiles.yml

index ebfc13c626ff86e3e485692c826e68a29a20e50f..4a2cff96d8945c96284443d0c7910c47eade8f6b 100644 (file)
@@ -162,10 +162,11 @@ jobs:
       if: github.event_name == 'push' && matrix.platform.tests == ''
       run: |
         make test HARNESS_JOBS=${HARNESS_JOBS:-4} \
+                  TESTS="-test_afalg" \
                   QEMU_LD_PREFIX=/usr/${{ matrix.platform.arch }}
     - name: make some tests
       if: github.event_name == 'push' && matrix.platform.tests != 'none' && matrix.platform.tests != ''
       run: |
         make test HARNESS_JOBS=${HARNESS_JOBS:-4} \
-                  TESTS="${{ matrix.platform.tests }}" \
+                  TESTS="${{ matrix.platform.tests }} -test_afalg" \
                   QEMU_LD_PREFIX=/usr/${{ matrix.platform.arch }}