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
Jan Moringen
asdf
Commits
286c7c3c
Commit
286c7c3c
authored
11 years ago
by
Francois-Rene Rideau
Browse files
Options
Downloads
Patches
Plain Diff
Fix the image-op test script.
Report some implementation bugs in TODO.
parent
9a68001c
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
TODO
+4
-0
4 additions, 0 deletions
TODO
test/test-program.script
+2
-2
2 additions, 2 deletions
test/test-program.script
with
6 additions
and
2 deletions
TODO
+
4
−
0
View file @
286c7c3c
...
@@ -128,6 +128,7 @@
...
@@ -128,6 +128,7 @@
but prints the namestring with a dot separator!
but prints the namestring with a dot separator!
(make-pathname :name "foo" :type :unspecific) ==> #P"foo."
(make-pathname :name "foo" :type :unspecific) ==> #P"foo."
If bug is ever fixed, upgrade *unspecific-pathname-type* in uiop/pathname.
If bug is ever fixed, upgrade *unspecific-pathname-type* in uiop/pathname.
*** XCL doesn't properly process files the name of which contains a *
** GCL is almost working again; but implementation bugs remain.
** GCL is almost working again; but implementation bugs remain.
See November 2013 discussion on gcl-devel.
See November 2013 discussion on gcl-devel.
...
@@ -157,6 +158,7 @@
...
@@ -157,6 +158,7 @@
*** `#5(1 ,@`(2 3)))` returns #(1 2 3),
*** `#5(1 ,@`(2 3)))` returns #(1 2 3),
rather than #(1 2 3 2 3 2 3 2 3) or even better #(1 2 3 3 3).
rather than #(1 2 3 2 3 2 3 2 3) or even better #(1 2 3 3 3).
*** (DIRECTORY #p"*.*") fails to match files with pathname type NIL.
*** (DIRECTORY #p"*.*") fails to match files with pathname type NIL.
*** GCL doesn't properly process files the name of which contains a *
*** Require is useless, because there is no system search path,
*** Require is useless, because there is no system search path,
and so you can't put ASDF (or anything) there.
and so you can't put ASDF (or anything) there.
*** Low-level compiler bug:
*** Low-level compiler bug:
...
@@ -166,11 +168,13 @@
...
@@ -166,11 +168,13 @@
*** ABCL fails the timestamp propagation test.
*** ABCL fails the timestamp propagation test.
*** `#5(1 ,@`(2 3)))` returns #(1 2 3),
*** `#5(1 ,@`(2 3)))` returns #(1 2 3),
rather than #(1 2 3 2 3 2 3 2 3) or even better #(1 2 3 3 3).
rather than #(1 2 3 2 3 2 3 2 3) or even better #(1 2 3 3 3).
*** ABCL doesn't properly process files the name of which contains a *
** ECL has issues with its bundles.
** ECL has issues with its bundles.
On MacOS X, test-bundle.script fails.
On MacOS X, test-bundle.script fails.
On Linux, test-program.script fails with recent ECL 237af2e,
On Linux, test-program.script fails with recent ECL 237af2e,
but used to work quite fine earlier in 2013.
but used to work quite fine earlier in 2013.
*** ECL doesn't properly process files the name of which contains a *
* Design & Implement some out-of-line configuration mechanism for various options?
* Design & Implement some out-of-line configuration mechanism for various options?
i.e. let configuration files override some variables around some actions.
i.e. let configuration files override some variables around some actions.
...
...
This diff is collapsed.
Click to expand it.
test/test-program.script
+
2
−
2
View file @
286c7c3c
...
@@ -41,14 +41,14 @@
...
@@ -41,14 +41,14 @@
(assert-equal (run-program
(assert-equal (run-program
(symbol-call :lisp-invocation :lisp-invocation-arglist
(symbol-call :lisp-invocation :lisp-invocation-arglist
:image-path (native-namestring img)
:image-path (native-namestring img)
:eval "(uiop:restore-image :entry-point 'hello:entry-point)")
:eval "(uiop:restore-image :entry-point 'hello:entry-point
:lisp-interaction nil
)")
:output :lines)
:output :lines)
'("hello, world"))
'("hello, world"))
(assert-equal (run-program
(assert-equal (run-program
(symbol-call :lisp-invocation :lisp-invocation-arglist
(symbol-call :lisp-invocation :lisp-invocation-arglist
:image-path (native-namestring img)
:image-path (native-namestring img)
:eval "(uiop:restore-image :entry-point 'hello:entry-point)"
:eval "(uiop:restore-image :entry-point 'hello:entry-point
:lisp-interaction nil
)"
:arguments '("a" "b c" "d"))
:arguments '("a" "b c" "d"))
:output :lines)
:output :lines)
'("hello, world"
'("hello, world"
...
...
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