Raymond Toy pushed to branch issue-460-ci-fails-if-unit-tests-do at cmucl / cmucl
Commits:
-
b0685947
by Raymond Toy at 2026-01-02T08:52:23-08:00
1 changed file:
Changes:
| ... | ... | @@ -9,8 +9,8 @@ usage() { |
| 9 | 9 | echo "run-tests.sh [-?h] [-d test-dir] [-l lisp] [tests]"
|
| 10 | 10 | echo " -d test-dir Directory containing the unit test files"
|
| 11 | 11 | echo " -l lisp Lisp to use for the tests; defaults to lisp"
|
| 12 | - echo " -u Skip lisp-unit tests"
|
|
| 13 | 12 | echo " -p Skip package-local-nicknames test"
|
| 13 | + echo " -u Skip lisp-unit tests"
|
|
| 14 | 14 | echo " -? This help message"
|
| 15 | 15 | echo " -h This help message"
|
| 16 | 16 | echo ""
|
| ... | ... | @@ -27,13 +27,13 @@ usage() { |
| 27 | 27 | }
|
| 28 | 28 | |
| 29 | 29 | LISP=lisp
|
| 30 | -while getopts "uph?l:d:" arg
|
|
| 30 | +while getopts "puh?l:d:" arg
|
|
| 31 | 31 | do
|
| 32 | 32 | case $arg in
|
| 33 | 33 | l) LISP=$OPTARG ;;
|
| 34 | 34 | d) TESTDIR=$OPTARG ;;
|
| 35 | - u) SKIP_UNIT=yes ;;
|
|
| 36 | 35 | p) SKIP_PLN=yes ;;
|
| 36 | + u) SKIP_UNIT=yes ;;
|
|
| 37 | 37 | h|\?) usage ;;
|
| 38 | 38 | esac
|
| 39 | 39 | done
|
| ... | ... | @@ -102,8 +102,6 @@ if [ "$SKIP_UNIT" != "yes" ]; then |
| 102 | 102 | fi
|
| 103 | 103 | |
| 104 | 104 | ## Now run tests for trivial-package-local-nicknames
|
| 105 | -echo SKIP_PLN = $SKIP_PLN
|
|
| 106 | - |
|
| 107 | 105 | if [ "$SKIP_PLN" != "yes" ]; then
|
| 108 | 106 | REPO=trivial-package-local-nicknames
|
| 109 | 107 | BRANCH=cmucl-updates
|