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
Container Registry
Model registry
Operate
Environments
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
Didier Verna
asdf
Commits
405e2b37
Commit
405e2b37
authored
9 years ago
by
Francois-Rene Rideau
Browse files
Options
Downloads
Patches
Plain Diff
Update lisp-invocation to 1.0.12 to better distinguish allegro variants in test-program
parent
c2fb9bbb
No related branches found
No related tags found
No related merge requests found
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
ext/closer-closer-mop
+1
-1
1 addition, 1 deletion
ext/closer-closer-mop
ext/lisp-invocation
+1
-1
1 addition, 1 deletion
ext/lisp-invocation
test/run-tests.sh
+2
-1
2 additions, 1 deletion
test/run-tests.sh
test/test-program.script
+4
-10
4 additions, 10 deletions
test/test-program.script
with
8 additions
and
13 deletions
closer-closer-mop
@
ea8e7023
Subproject commit
1bd37b7dd7671ee174f9c00a2490c00c35c3a28
e
Subproject commit
ea8e7023f84e247e1b96cfd8c3831741a58d2b9
e
This diff is collapsed.
Click to expand it.
lisp-invocation
@
0a55ecc1
Compare
9d1a4930
...
0a55ecc1
Subproject commit
9d1a4930b4da48030bb74a80db443b6ec4254712
Subproject commit
0a55ecc11cf564a13f443dd8916d00449b100636
This diff is collapsed.
Click to expand it.
test/run-tests.sh
+
2
−
1
View file @
405e2b37
...
...
@@ -219,7 +219,8 @@ case "$lisp" in
allegromodern8_64_s
)
command
=
"
${
ALLEGROMODERN8_64_S
:-
mlisp8_64_s
}
"
;;
esac
# For the sake of the lisp-invocation library, re-export these
ALLEGRO
=
$command
;
export
ALLEGRO
ALLEGRO
=
$command
;
export
ALLEGRO
;
echo
ALLEGRO
=
$ALLEGRO
flags
=
"-q"
nodebug
=
"-batch"
if
[
"
$os
"
=
windows
]
&&
[
-z
"
$ALLEGRO_NOISY
"
]
;
then
...
...
This diff is collapsed.
Click to expand it.
test/test-program.script
+
4
−
10
View file @
405e2b37
...
...
@@ -9,12 +9,6 @@
(trace run-program #+(and sbcl os-windows) sb-ext:run-program)
#+allegro
(defparameter *lisp*
(let ((argv0 (parse-native-namestring (first (raw-command-line-arguments)))))
(or (absolute-pathname-p argv0)
(truename (subpathname #p"sys:" argv0)))))
;; Try to load lisp-invocation from xcvb
(initialize-source-registry
`(:source-registry
...
...
@@ -24,7 +18,7 @@
:inherit-configuration))
(unless (find-system :lisp-invocation nil)
(leave-test "Couldn't find lisp-invocation. Probably your ASDF ext/ directory needs submodule update." 1))
(unless (version-satisfies (find-system "lisp-invocation") "1.0.1
1
")
(unless (version-satisfies (find-system "lisp-invocation") "1.0.1
2
")
(leave-test "Lisp-invocation library isn't new enough to test successfully. Probably your ASDF ext/ directory needs submodule update." 1))
(load-system "lisp-invocation/all")
;; Disable any user source registry.
...
...
@@ -35,7 +29,7 @@
0
(nth-value 2
(lisp-invocation:invoke-lisp
#+allegro :lisp-path #+allegro *lisp*
:implementation-type (lisp-invocation/allegro-variants:current-lisp-variant)
:cross-compile nil
:load (native-namestring (subpathname *test-directory* "make-hello-world.lisp"))
:eval (format nil "(asdf-test::make-hello-~(~a~))" kind)
...
...
@@ -62,7 +56,7 @@
(nest
#+lispworks (last)
(lisp-invocation:invoke-lisp
#+allegro :lisp-path #+allegro *lisp*
:implementation-type (lisp-invocation/allegro-variants:current-lisp-variant)
:cross-compile nil
:image-path (native-namestring img)
:eval "(uiop:restore-image :entry-point 'hello:entry-point :lisp-interaction nil)"
...
...
@@ -73,7 +67,7 @@
#-(or lispworks scl) ;; These can't be passed arguments the normal way
(assert-equal
(lisp-invocation:invoke-lisp
#+allegro :lisp-path #+allegro *lisp*
:implementation-type (lisp-invocation/allegro-variants:current-lisp-variant)
:image-path (native-namestring img)
:cross-compile nil
:eval "(uiop:restore-image :entry-point 'hello:entry-point :lisp-interaction nil)"
...
...
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