Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
A
asdf
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
Package registry
Model registry
Operate
Environments
Terraform modules
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
Tarn Burton
asdf
Commits
47e00c25
Commit
47e00c25
authored
8 years ago
by
Francois-Rene Rideau
Browse files
Options
Downloads
Patches
Plain Diff
tools: pass :console t to lisp-invocation 1.0.14.
parent
bca14a95
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
tools/asdf-tools.asd
+2
-2
2 additions, 2 deletions
tools/asdf-tools.asd
tools/test-environment.lisp
+2
-2
2 additions, 2 deletions
tools/test-environment.lisp
with
4 additions
and
4 deletions
tools/asdf-tools.asd
+
2
−
2
View file @
47e00c25
(
defsystem
"asdf-tools"
(
defsystem
"asdf-tools"
:description
"tools to build, test, maintain and release ASDF itself"
:description
"tools to build, test, maintain and release ASDF itself"
:depends-on
((
:version
"asdf"
"3.
1.6
"
)
:depends-on
((
:version
"asdf"
"3.
2.0
"
)
(
:version
"inferior-shell"
"2.0.3.4"
)
(
:version
"inferior-shell"
"2.0.3.4"
)
(
:version
"lisp-invocation/all"
"1.0.1
2
"
)
(
:version
"lisp-invocation/all"
"1.0.1
4
"
)
(
:version
"cl-ppcre"
"2.0.11"
)
(
:version
"cl-ppcre"
"2.0.11"
)
(
:version
"optima.ppcre"
"1.0"
)
(
:version
"optima.ppcre"
"1.0"
)
(
:version
"cl-scripting"
"0.2"
)
(
:version
"cl-scripting"
"0.2"
)
...
...
This diff is collapsed.
Click to expand it.
tools/test-environment.lisp
+
2
−
2
View file @
47e00c25
...
@@ -157,7 +157,7 @@ and which systems to test loading with ASDF_TEST_SYSTEMS or s=
...
@@ -157,7 +157,7 @@ and which systems to test loading with ASDF_TEST_SYSTEMS or s=
(
apply
',real
args
)))
(
apply
',real
args
)))
(
deftestcmd
interactive-command
(
lisp
)
(
deftestcmd
interactive-command
(
lisp
)
(
let*
((
command
(
lisp-invocation-arglist
:implementation-type
lisp
:debugger
t
)))
(
let*
((
command
(
lisp-invocation-arglist
:implementation-type
lisp
:debugger
t
:console
t
)))
(
return-from
interactive-command
(
cons
"rlwrap"
command
))))
(
return-from
interactive-command
(
cons
"rlwrap"
command
))))
(
defparameter
*default-test-lisps*
(
defparameter
*default-test-lisps*
...
@@ -222,7 +222,7 @@ and which systems to test loading with ASDF_TEST_SYSTEMS or s=
...
@@ -222,7 +222,7 @@ and which systems to test loading with ASDF_TEST_SYSTEMS or s=
(
format
t
"~&Now ~A...~@[ (log in ~A)~]~%"
activity
log
)
(
format
t
"~&Now ~A...~@[ (log in ~A)~]~%"
activity
log
)
(
let*
((
eval
(
compose-non-special-string
forms
))
;; at least avoiding ~% is necessary on Windows.
(
let*
((
eval
(
compose-non-special-string
forms
))
;; at least avoiding ~% is necessary on Windows.
(
command
(
lisp-invocation-arglist
:implementation-type
(
get-lisp
lisp
)
(
command
(
lisp-invocation-arglist
:implementation-type
(
get-lisp
lisp
)
:eval
eval
:debugger
debugger
))
:eval
eval
:debugger
debugger
:console
t
))
(
interactive
(
if
(
eq
output
:interactive
)
:interactive
nil
))
(
interactive
(
if
(
eq
output
:interactive
)
:interactive
nil
))
(
output
(
if
(
eq
output
t
)
*standard-output*
output
))
(
output
(
if
(
eq
output
t
)
*standard-output*
output
))
(
output
(
if
(
eq
output
*stdout*
)
:interactive
output
)))
(
output
(
if
(
eq
output
*stdout*
)
:interactive
output
)))
...
...
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