Revert " * Makefile (check-guess): Don't remove uname here."

This reverts commit f34dacb3462ca1b390e70b090dbeafbdca7ce28a.
This commit is contained in:
Ben Elliston 2019-03-23 22:09:04 +11:00
parent f34dacb346
commit f6872aecd5
3 changed files with 1 additions and 10 deletions

View File

@ -1,10 +1,3 @@
2019-03-23 Ben Elliston <bje@gnu.org>
* Makefile (check-guess): Don't remove uname here.
* testsuite/config-guess.sh (run_config_guess): Remove dummy uname
script if the test passes (if not, the script is left behind for
inspection).
2019-03-23 Ben Elliston <bje@gnu.org>
* testsuite/config-sub.sh (run_one_config_sub): New.

View File

@ -11,7 +11,7 @@ doc/config.sub.1: config.sub
help2man -N --name "validate and canonicalize a configuration triplet" --output=$@ ./config.sub
check-guess:
cd testsuite && bash config-guess.sh
cd testsuite && bash config-guess.sh && rm uname
check-sub:
cd testsuite && bash config-sub.sh

View File

@ -42,8 +42,6 @@ EOF
continue
fi
$verbose && echo "PASS: $triplet"
# only remove uname dummy script if the test passes
rm uname
done
return $rc
}