]> git.ipfire.org Git - thirdparty/gnutls.git/commitdiff
Disable test scripts on windows
authorZoltan Fridrich <zfridric@redhat.com>
Thu, 19 May 2022 08:27:51 +0000 (10:27 +0200)
committerZoltan Fridrich <zfridric@redhat.com>
Thu, 19 May 2022 13:17:28 +0000 (15:17 +0200)
This is a temporary solution to avoid failures
of test scripts when ran on windows

Signed-off-by: Zoltan Fridrich <zfridric@redhat.com>
tests/Makefile.am
tests/cert-tests/Makefile.am

index 4deeb6462b647b8f0b4e0653513eb341cc2ce01b..2f09cb8a801d00a7b9eb77957bd6bd9188b81dd9 100644 (file)
@@ -594,7 +594,12 @@ noinst_PROGRAMS = datefudge-check
 endif
 
 check_PROGRAMS = $(cpptests) $(ctests) $(indirect_tests)
-TESTS = $(cpptests) $(ctests) $(dist_check_SCRIPTS)
+TESTS = $(cpptests) $(ctests)
+
+# Temporary solution, avoid script execution on windows
+if !WINDOWS
+TESTS += $(dist_check_SCRIPTS)
+endif
 
 TESTS_ENVIRONMENT +=                                           \
        CC="$(CC)"                                              \
index 3df478449a81a9bf0d0d172a4158a5b957e59325..300d981d12ba013dca19946ebc7144c745422a38 100644 (file)
@@ -146,7 +146,10 @@ endif
 
 dist_check_SCRIPTS += certtool-rsa-pss.sh certtool-eddsa.sh
 
+# temporary solution, avoid script execution on windows
+if !WINDOWS
 TESTS = $(dist_check_SCRIPTS)
+endif
 
 # Set detect_leaks=0 to ASAN. It seems it is detecting many leaks in tools
 # which are not trivial, and makes no point to address.