Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
A
alexandria
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
Momchil Ivanov
alexandria
Commits
e5c54bc3
Commit
e5c54bc3
authored
7 years ago
by
Attila Lendvai
Browse files
Options
Downloads
Patches
Plain Diff
Simplify .asd files for ASDF 3 (i.e. only compatible with 2013 or later).
parent
0426bd2f
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
alexandria-tests.asd
+7
-8
7 additions, 8 deletions
alexandria-tests.asd
alexandria.asd
+3
-9
3 additions, 9 deletions
alexandria.asd
with
10 additions
and
17 deletions
alexandria-tests.asd
+
7
−
8
View file @
e5c54bc3
(
defsystem
alexandria-tests
(
defsystem
"
alexandria-tests
"
:licence
"Public Domain / 0-clause MIT"
:description
"Tests for Alexandria, which is a collection of portable public domain utilities."
:author
"Nikodemus Siivola <nikodemus@sb-studio.net>, and others."
:depends-on
(
:alexandria
#+
sbcl
:sb-rt
#-
sbcl
:rt
)
:components
((
:file
"tests"
)))
(
defmethod
perform
((
o
test-op
)
(
c
(
eql
(
find-system
:alexandria-tests
))))
(
flet
((
run-tests
(
&rest
args
)
(
apply
(
intern
(
string
'
#:run-tests
)
'
#:alexandria-tests
)
args
)))
(
run-tests
:compiled
nil
)
(
run-tests
:compiled
t
)))
:components
((
:file
"tests"
))
:perform
(
test-op
(
o
c
)
(
flet
((
run-tests
(
&rest
args
)
(
apply
(
intern
(
string
'
#:run-tests
)
'
#:alexandria-tests
)
args
)))
(
run-tests
:compiled
nil
)
(
run-tests
:compiled
t
))))
This diff is collapsed.
Click to expand it.
alexandria.asd
+
3
−
9
View file @
e5c54bc3
(
defsystem
:
alexandria
(
defsystem
"
alexandria
"
:version
"0.0.0"
:licence
"Public Domain / 0-clause MIT"
:description
"Alexandria is a collection of portable public domain utilities."
...
...
@@ -58,11 +58,5 @@ the following constraints:
(
:file
"arrays"
:depends-on
(
"package"
"types"
))
(
:file
"sequences"
:depends-on
(
"package"
"lists"
"types"
))
(
:file
"numbers"
:depends-on
(
"package"
"sequences"
))
(
:file
"features"
:depends-on
(
"package"
"control-flow"
))))
(
defmethod
operation-done-p
((
o
test-op
)
(
c
(
eql
(
find-system
:alexandria
))))
nil
)
(
defmethod
perform
((
o
test-op
)
(
c
(
eql
(
find-system
:alexandria
))))
(
operate
'load-op
:alexandria-tests
)
(
operate
'test-op
:alexandria-tests
))
(
:file
"features"
:depends-on
(
"package"
"control-flow"
)))
:in-order-to
((
test-op
(
test-op
"alexandria-tests"
))))
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