Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
A
asdf
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
15
Issues
15
List
Boards
Labels
Service Desk
Milestones
Merge Requests
9
Merge Requests
9
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Operations
Operations
Incidents
Environments
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
asdf
asdf
Commits
1ebb82a1
Commit
1ebb82a1
authored
Jan 03, 2014
by
Francois-Rene Rideau
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Refactor Makefile test targets.
parent
c26d3852
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
19 additions
and
20 deletions
+19
-20
Makefile
Makefile
+19
-20
No files found.
Makefile
View file @
1ebb82a1
...
...
@@ -134,32 +134,31 @@ test: test-lisp test-clean-load test-load-systems doc
test-load-systems
:
build/asdf.lisp
./test/run-tests.sh
-l
${l}
${s}
test-all-lisps
:
${MAKE}
test-load-systems
@
for
lisp
in
${lisps}
;
do
\
${MAKE}
test-clean-load test-lisp test-upgrade
l
=
$$
lisp
||
exit
1
;
\
done
test-all-lisps
:
test-load-systems test-all-clean-load test-all-lisp test-all-upgrade
# test upgrade is a very long run... This does just the regression tests
test-all-no-upgrade
:
@
for
lisp
in
${lisps}
;
do
\
${MAKE}
test-clean-load test-lisp
l
=
$$
lisp
||
exit
1
;
\
done
test-all-clean-load
:
@
for
lisp
in
${lisps}
;
do
${MAKE}
test-clean-load
l
=
$$
lisp
||
exit
1
;
done
test-all-lisp
:
@
for
lisp
in
${lisps}
;
do
${MAKE}
test-lisp
l
=
$$
lisp
||
exit
1
;
done
test-all-upgrade
:
@
for
lisp
in
${lisps}
;
do
\
${MAKE}
test-upgrade
l
=
$$
lisp
||
exit
1
;
\
done
@
for
lisp
in
${lisps}
;
do
${MAKE}
test-upgrade
l
=
$$
lisp
||
exit
1
;
done
test-all-no-upgrade
:
doc test-load-systems test-all-clean-load test-all-lisp
test-all
:
test-all-no-upgrade test-all-upgrade
test-all-lisp-no-stop
:
@
for
lisp
in
${lisps}
;
do
${MAKE}
test-lisp
l
=
$$
lisp
;
done
;
:
test-all-upgrade-no-stop
:
@
for
lisp
in
${lisps}
;
do
${MAKE}
test-upgrade
l
=
$$
lisp
;
done
;
:
test-all
:
doc test-all-lisps
test-all
-no-upgrade-no-stop
:
doc test-load-systems test-all-clean-load test-all-lisp-no-stop
test-all-no-stop
:
-
make doc
;
for
l
in
${lisps}
;
do
\
make test-clean-load test-lisp
l
=
$$
l
;
make test-upgrade
l
=
$$
l
;
\
done
;
true
test-all-no-stop
:
test-all-no-upgrade-no-stop test-all-upgrade-no-stop
test-all-no-upgrade-no-stop
:
-
make doc
;
for
l
in
${lisps}
;
do
make test-clean-load test-lisp
l
=
$$
l
;
done
;
true
extract
:
extract-all-tagged-asdf
extract-all-tagged-asdf
:
build/asdf.lisp
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment