summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJim Meyering <meyering@fb.com>2020-11-16 09:50:04 -0800
committerJim Meyering <meyering@fb.com>2020-11-16 09:50:04 -0800
commitb28fead230968edb952499261243434515c78835 (patch)
treed3421e0b7c9a6cf00c6c529b658e12cf6dfe56e5
parent7cdef9f77688ece01509ba384d3e324a53d9dcda (diff)
downloadautomake-b28fead230968edb952499261243434515c78835.tar.gz
tests: correct preceding change.
* t/auxdir-pr19311.sh: Fix error in case stmt and match more upcoming versions.
-rw-r--r--t/auxdir-pr19311.sh5
1 files changed, 3 insertions, 2 deletions
diff --git a/t/auxdir-pr19311.sh b/t/auxdir-pr19311.sh
index 7add75468..8f0d3bd0a 100644
--- a/t/auxdir-pr19311.sh
+++ b/t/auxdir-pr19311.sh
@@ -23,8 +23,9 @@ required=cc
ver=$($AUTOCONF --version | sed -n '1s/.* //p')
case $ver in
- 2.69[d-z]) ;;
- 2.70*) ;;
+ 2.69[d-z]*) ;;
+ 2.[7-9][0-9]*) ;;
+ [3-9].*) ;;
*) skip_ 'this test passes with autoconf-2.69d and newer'
esac