diff options
-rw-r--r-- | scripts/runtest.sh | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/scripts/runtest.sh b/scripts/runtest.sh index ddbf0549..33d479ab 100644 --- a/scripts/runtest.sh +++ b/scripts/runtest.sh @@ -81,7 +81,10 @@ skipnot() toyonly() { IS_TOYBOX="$("$C" --version 2>/dev/null)" - [ "${IS_TOYBOX/toybox/}" == "$IS_TOYBOX" ] && SKIPNEXT=1 + # Ideally we'd just check for "toybox", but toybox sed lies to make autoconf + # happy, so we have at least two things to check for. + IS_TOYBOX_RE='(toybox|This is not GNU).*' + [[ "$IS_TOYBOX" =~ $IS_TOYBOX_RE ]] || SKIPNEXT=1 "$@" } |