Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
A
asdf
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container Registry
Model registry
Operate
Environments
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Didier Verna
asdf
Commits
2604d087
Commit
2604d087
authored
11 years ago
by
Francois-Rene Rideau
Browse files
Options
Downloads
Patches
Plain Diff
Automated diagnostic for test-all-no-stop and test-all-no-upgrade-no-stop targets.
parent
7ca9a645
No related branches found
No related tags found
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
Makefile
+27
-8
27 additions, 8 deletions
Makefile
test/run-tests.sh
+1
-1
1 addition, 1 deletion
test/run-tests.sh
with
28 additions
and
9 deletions
Makefile
+
27
−
8
View file @
2604d087
...
...
@@ -12,12 +12,10 @@ lisps ?= ${ASDF_TEST_LISPS}
else
lisps
?=
ccl clisp sbcl ecl ecl_bytecodes cmucl abcl scl allegro lispworks allegromodern gcl xcl
endif
## grep for #+/#- features in the test/ directory to see plenty of disabled tests on some platforms
## NOT SUPPORTED BY OUR AUTOMATED TESTS:
## cormancl genera lispworks-personal-edition mkcl rmcl
## Some are manually tested once in a while.
## FAIL: gcl -- most implementation bugs are now fixed, but some remain. See TODO.
## FAIL: xcl -- implementation bugs require lots of papering over during tests. See TODO.
## grep for #+/#- features in the test/ directory to see plenty of disabled tests.
ifdef
ASDF_TEST_SYSTEMS
s
?=
${
ASDF_TEST_SYSTEMS
}
endif
...
...
@@ -42,8 +40,6 @@ SBCL ?= sbcl
SCL
?=
scl
XCL
?=
xcl
# website, tag, install
header_lisp
:=
header.lisp
driver_lisp
:=
uiop/package.lisp uiop/common-lisp.lisp uiop/utility.lisp uiop/os.lisp uiop/pathname.lisp uiop/filesystem.lisp uiop/stream.lisp uiop/image.lisp uiop/run-program.lisp uiop/lisp-build.lisp uiop/configuration.lisp uiop/backward-driver.lisp uiop/driver.lisp
defsystem_lisp
:=
upgrade.lisp component.lisp system.lisp cache.lisp find-system.lisp find-component.lisp operation.lisp action.lisp lisp-action.lisp plan.lisp operate.lisp output-translations.lisp source-registry.lisp backward-internals.lisp parse-defsystem.lisp bundle.lisp concatenate-source.lisp backward-interface.lisp package-system.lisp interface.lisp user.lisp footer.lisp
...
...
@@ -156,9 +152,32 @@ test-all-upgrade-no-stop:
@
for
lisp
in
${
lisps
}
;
do
${
MAKE
}
test-upgrade
l
=
$$
lisp
;
done
;
:
test-all-no-upgrade-no-stop
:
doc test-load-systems test-all-clean-load test-all-lisp-no-stop
test-all-no-stop
:
test-all-no-upgrade-no-stop test-all-upgrade-no-stop
make check-all-test-results
test-all-no-stop
:
doc test-load-systems test-all-clean-load test-all-lisp-no-stop test-all-upgrade-no-stop
make check-all-results
check-all-test-results
:
@
A
=
"
`
grep
-L
'49 passing and 0 failing'
build/results/
*
-test
.text
`
"
;
\
if
[
-n
"
$$
A"
]
;
then
\
echo
"Unexpected test failures on these implementations:"
;
\
echo
"
$$
A"
;
\
exit
1
;
\
fi
check-all-upgrade-results
:
@
A
=
"
$$(
for i in build/results/*-upgrade.text ; do
\
case
$$
i in */cmucl-*|*/gcl-*|*/xcl-*
)
;; *)
\
if [ 'Script succeeded' != "
$$(
tail
-1
<
$$
i
)
" ] ;
\
then echo
$$
i ; fi ; esac ; done)"
;
\
if
[
-n
"
$$
A"
]
;
then
\
echo
"Unexpected upgrade failures on these implementations:"
;
\
echo
"
$$
A"
;
\
exit
1
;
\
fi
check-all-results
:
@
r
=
0
;
make check-all-test-results
||
r
=
1
;
make check-all-upgrade-results
||
r
=
1
;
exit
$r
extract
:
extract-all-tagged-asdf
extract-all-tagged-asdf
:
build/asdf.lisp
...
...
This diff is collapsed.
Click to expand it.
test/run-tests.sh
+
1
−
1
View file @
2604d087
...
...
@@ -397,7 +397,7 @@ valid_upgrade_test_p () {
# Skip many ECL tests, for various ASDF issues
ecl
*
:1.
*
|
ecl
*
:2.0[01]
*
|
ecl
*
:2.20:
*
)
:
;;
# GCL 2.7.0 from late November 2013 is required, with ASDF 3.1.1
gcl:1.
*
|
gcl:2.
*
|
gcl:3.0
*
)
:
;;
gcl:REQUIRE:
*
|
gcl:1.
*
|
gcl:2.
*
|
gcl:3.0
*
)
:
;;
# MKCL is only supported starting with 2.24, so skip earlier versions
mkcl:1.
*
|
mkcl:2.0[01]
*
|
mkcl:2.2[0-3]:
*
)
:
;;
# XCL support starts with ASDF 2.014.2
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment