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
16
Issues
16
List
Boards
Labels
Service Desk
Milestones
Merge Requests
8
Merge Requests
8
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
e6b5d611
Commit
e6b5d611
authored
Dec 20, 2013
by
Francois-Rene Rideau
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Slightly simplify test-nested-components.
parent
012c60ff
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
21 additions
and
26 deletions
+21
-26
test/test-nested-components-1.asd
test/test-nested-components-1.asd
+0
-22
test/test-nested-components.script
test/test-nested-components.script
+21
-4
No files found.
test/test-nested-components-1.asd
deleted
100644 → 0
View file @
012c60ff
;;; -*- Mode: common-lisp; Syntax: Common-Lisp; -*-
(
defsystem
test-nested-components-a
:components
((
:module
"nested-components"
:pathname
""
:components
((
:file
"test-nested-1"
)))))
(
defsystem
test-nested-components-b
:pathname
""
:components
((
:file
"test-nested-1"
)))
(
defsystem
db-agraph-preflight
:components
((
:module
"preflight-checks"
:components
((
:file
"preflight"
)))))
(
defsystem
db-agraph-preflight-2
:pathname
"preflight-checks"
:components
((
:file
"preflight"
)))
test/test-nested-components.script
View file @
e6b5d611
...
...
@@ -2,10 +2,27 @@
;;; check that added nesting via modules doesn't confuse ASDF
(setf *central-registry* nil)
(load "test-nested-components-1.asd")
(def-test-system test-nested-components-a
:components
((:module "nested-components"
:pathname ""
:components ((:file "test-nested-1")))))
(print
(def-test-system test-nested-components-b
:components
((:file "test-nested-1")))
(def-test-system db-agraph-preflight
:components
((:module "preflight-checks"
:components ((:file "preflight")))))
(defsystem db-agraph-preflight-2
:pathname "preflight-checks" :source-file nil
:components
((:file "preflight")))
(writeln
(list
:a
(traverse 'compile-op 'test-nested-components-a)
...
...
@@ -18,7 +35,7 @@
(oos 'compile-op 'test-nested-components-a)
(oos 'compile-op 'test-nested-components-b)
(
print
(
writeln
(list
(traverse 'load-op 'test-nested-components-a)
(traverse 'load-op 'test-nested-components-b)))
...
...
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