Disable dash tests in travis

This commit is contained in:
ZyX 2014-08-23 16:02:04 +04:00
parent ebc98977ae
commit 1b56179676
1 changed files with 5 additions and 4 deletions

View File

@ -301,6 +301,10 @@ if test -z "${ONLY_SHELL}" || test "x${ONLY_SHELL%sh}" != "x${ONLY_SHELL}" || te
fi
fi
SH="${TEST_COMMAND%% *}"
# dash tests are not stable, see #931
if test x$FAST$SH = x1dash ; then
continue
fi
if test "x$ONLY_SHELL" != "x" && test "x$ONLY_SHELL" != "x$SH" ; then
continue
fi
@ -309,10 +313,7 @@ if test -z "${ONLY_SHELL}" || test "x${ONLY_SHELL%sh}" != "x${ONLY_SHELL}" || te
fi
echo ">>> $(which $SH)"
if ! run_test $TEST_TYPE $TEST_CLIENT $TEST_COMMAND ; then
# dash tests are not stable, see #931
if test "x$SH" != "xdash" ; then
FAILED=1
fi
FAILED=1
fi
done
done