summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNick Mathewson <nickm@torproject.org>2018-07-19 08:31:07 -0400
committerNick Mathewson <nickm@torproject.org>2018-07-19 08:31:07 -0400
commit9905289fe99382d20507adbc57e112729399eb42 (patch)
treed32183cdd85e2e3942017a667a7f6aaebe4cf32c
parentf94e66e8d1cb089011a6358f28088d6eb111b718 (diff)
parent27f5bd52fea3a18daadc455e9e044e997753c93d (diff)
downloadtor-9905289fe99382d20507adbc57e112729399eb42.tar.gz
tor-9905289fe99382d20507adbc57e112729399eb42.zip
Merge branch 'maint-0.3.4' into release-0.3.4
-rw-r--r--changes/bug268533
-rwxr-xr-xsrc/test/test_key_expiration.sh8
2 files changed, 11 insertions, 0 deletions
diff --git a/changes/bug26853 b/changes/bug26853
new file mode 100644
index 0000000000..6ee47789b9
--- /dev/null
+++ b/changes/bug26853
@@ -0,0 +1,3 @@
+ o Minor bugfixes (continuous integration):
+ - Skip an unreliable key expiration test on Windows, until the underlying
+ issue in bug 26076 is resolved. Fixes bug 26853; bugfix on 0.3.2.1-alpha.
diff --git a/src/test/test_key_expiration.sh b/src/test/test_key_expiration.sh
index 5511dbf18c..cf6608634d 100755
--- a/src/test/test_key_expiration.sh
+++ b/src/test/test_key_expiration.sh
@@ -13,6 +13,14 @@ if [ $# -eq 0 ] || [ ! -f ${1} ] || [ ! -x ${1} ]; then
fi
fi
+UNAME_OS=`uname -s | cut -d_ -f1`
+if test "$UNAME_OS" = 'CYGWIN' || \
+ test "$UNAME_OS" = 'MSYS' || \
+ test "$UNAME_OS" = 'MINGW'; then
+ echo "This test is unreliable on Windows. See trac #26076. Skipping." >&2
+ exit 77
+fi
+
if [ $# -ge 1 ]; then
TOR_BINARY="${1}"
shift