Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
Kamil Shakirov
alexandria
Commits
2d58c7a5
Commit
2d58c7a5
authored
Oct 27, 2016
by
Attila Lendvai
Browse files
Modernize .asd: get rid of operation-done-p.
parent
38e35b4f
Changes
2
Hide whitespace changes
Inline
Side-by-side
alexandria-tests.asd
View file @
2d58c7a5
...
...
@@ -5,12 +5,8 @@
:depends-on
(
:alexandria
#+
sbcl
:sb-rt
#-
sbcl
:rt
)
:components
((
:file
"tests"
)))
(
defmethod
operation-done-p
((
o
test-op
)
(
c
(
eql
(
find-system
:alexandria-tests
))))
nil
)
(
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
)))
\ No newline at end of file
(
run-tests
:compiled
t
)))
alexandria.asd
View file @
2d58c7a5
...
...
@@ -65,4 +65,4 @@ the following constraints:
(
defmethod
perform
((
o
test-op
)
(
c
(
eql
(
find-system
:alexandria
))))
(
operate
'load-op
:alexandria-tests
)
(
operate
'test-op
:alexandria-tests
))
\ No newline at end of file
(
operate
'test-op
:alexandria-tests
))
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