Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Submit feedback
Contribute to GitLab
Switch to GitLab Next
Sign in / Register
Toggle navigation
E
ECL
Project overview
Project overview
Details
Activity
Releases
Cycle Analytics
Insights
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Locked Files
Issues
161
Issues
161
List
Boards
Labels
Service Desk
Milestones
Merge Requests
3
Merge Requests
3
Security & Compliance
Security & Compliance
Dependency List
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Commits
Issue Boards
Open sidebar
Embeddable Common-Lisp
ECL
Commits
e00ffc76
Commit
e00ffc76
authored
Apr 17, 2012
by
Juanjo Garcia-Ripoll
Committed by
Juan Jose Garcia Ripoll
Apr 17, 2012
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Computation of pathnames in src/tests/config.lsp.in was broken under Windows
parent
57cd6e30
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
9 additions
and
3 deletions
+9
-3
src/tests/config.lsp.in
src/tests/config.lsp.in
+9
-3
No files found.
src/tests/config.lsp.in
View file @
e00ffc76
...
...
@@ -12,9 +12,13 @@
(
setf
*load-verbose*
nil
*load-print*
nil
)
(
defvar
*ecl-sources*
"@top_srcdir@/"
)
(
defvar
*ecl-sources*
(
loop
for
*default-pathname-defaults*
in
'
(
#p"@top_srcdir@/"
#p"../../"
#p"../../src/"
)
when
(
probe-file
"CHANGELOG"
)
return
*default-pathname-defaults*
))
(
defvar
*test-sources*
"@top_srcdir@/tests/"
)
(
defvar
*test-sources*
(
merge-pathnames
"tests/"
*ecl-sources*
)
)
(
defvar
*here*
(
merge-pathnames
"@builddir@/"
))
...
...
@@ -48,7 +52,7 @@
(
defvar
*quicklisp-setup-file*
(
merge-pathnames
"setup.lisp"
*quicklisp-sandbox*
))
(
defvar
*regressions-sources*
"@top_srcdir@/tests/bugs/"
)
(
defvar
*regressions-sources*
(
merge-pathnames
"bugs/"
*test-sources*
)
)
(
defvar
*regressions-sandbox*
(
merge-pathnames
"regressions/"
*here*
))
...
...
@@ -140,6 +144,8 @@
t
)
(
defun
copy-directory
(
orig
dest
)
(
setf
orig
(
truename
orig
))
(
print
dest
)
(
loop
for
f
in
(
directory
(
merge-pathnames
*wild-inferiors*
orig
))
for
f2
=
(
enough-namestring
f
orig
)
for
f3
=
(
merge-pathnames
f2
dest
)
...
...
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