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
f02926df
Commit
f02926df
authored
Feb 26, 2014
by
Robert P. Goldman
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Extend DEF-TEST-SYSTEM to permit systems named with strings.
parent
feaa1e4d
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
9 additions
and
2 deletions
+9
-2
test/script-support.lisp
test/script-support.lisp
+9
-2
No files found.
test/script-support.lisp
View file @
f02926df
...
...
@@ -592,8 +592,15 @@ is bound, write a message and exit on an error. If
(
setf
*package*
(
find-package
:asdf-test
))
(
defmacro
def-test-system
(
name
&rest
rest
)
`
(
apply
(
asym
:register-system-definition
)
',name
:pathname
,
*test-directory*
:source-file
nil
',rest
))
(
etypecase
name
(
symbol
`
(
apply
(
asym
:register-system-definition
)
',name
:pathname
,
*test-directory*
:source-file
nil
',rest
))
(
string
`
(
apply
(
asym
:register-system-definition
)
,
name
:pathname
,
*test-directory*
:source-file
nil
',rest
))))
(
defun
in-plan-p
(
plan
x
)
(
member
x
(
acall
:plan-actions
plan
)
:key
(
asym
:action-path
)
:test
'equal
))
...
...
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