summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNikos Mavrogiannopoulos <nmav@gnutls.org>2011-04-08 14:32:36 +0200
committerNikos Mavrogiannopoulos <nmav@gnutls.org>2011-04-08 15:40:15 +0200
commit1e4e52ea7fdeea7d21c1c4c79683a474ba54a912 (patch)
treeaa2d53b44a777a25053403d2f036ab266ac5e71d
parentccc92fb42034c783afa236c5eee99bc5204a0b8d (diff)
downloadgnutls-1e4e52ea7fdeea7d21c1c4c79683a474ba54a912.tar.gz
Do not run the test scripts in win32 environment.
-rwxr-xr-xtests/dsa/testdsa4
-rwxr-xr-xtests/openpgp-certs/testcerts4
2 files changed, 8 insertions, 0 deletions
diff --git a/tests/dsa/testdsa b/tests/dsa/testdsa
index 910bf8b167..de1b41bab3 100755
--- a/tests/dsa/testdsa
+++ b/tests/dsa/testdsa
@@ -27,6 +27,10 @@ PORT="${PORT:-5559}"
DEBUG=""
unset RETCODE
+if test "${WINDIR}" != "";then
+ exit 77
+fi
+
fail() {
echo "Failure: $1" >&2
exit 1
diff --git a/tests/openpgp-certs/testcerts b/tests/openpgp-certs/testcerts
index b100ac8f38..737aa7eb8c 100755
--- a/tests/openpgp-certs/testcerts
+++ b/tests/openpgp-certs/testcerts
@@ -27,6 +27,10 @@ PORT="${PORT:-5557}"
DEBUG=""
unset RETCODE
+if test "${WINDIR}" != "";then
+ exit 77
+fi
+
fail() {
echo "Failure: $1" >&2
RETCODE=${RETCODE:-${2:-1}}