From 286c7c3cdde2753bed1152d516585b2d6a54af87 Mon Sep 17 00:00:00 2001 From: Francois-Rene Rideau <tunes@google.com> Date: Tue, 18 Mar 2014 15:15:06 -0400 Subject: [PATCH] Fix the image-op test script. Report some implementation bugs in TODO. --- TODO | 4 ++++ test/test-program.script | 4 ++-- 2 files changed, 6 insertions(+), 2 deletions(-) diff --git a/TODO b/TODO index bea53d0f..a1e37163 100644 --- a/TODO +++ b/TODO @@ -128,6 +128,7 @@ but prints the namestring with a dot separator! (make-pathname :name "foo" :type :unspecific) ==> #P"foo." 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. See November 2013 discussion on gcl-devel. @@ -157,6 +158,7 @@ *** `#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). *** (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, and so you can't put ASDF (or anything) there. *** Low-level compiler bug: @@ -166,11 +168,13 @@ *** ABCL fails the timestamp propagation test. *** `#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). +*** ABCL doesn't properly process files the name of which contains a * ** ECL has issues with its bundles. On MacOS X, test-bundle.script fails. On Linux, test-program.script fails with recent ECL 237af2e, 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? i.e. let configuration files override some variables around some actions. diff --git a/test/test-program.script b/test/test-program.script index b0b1af9c..a7a64180 100644 --- a/test/test-program.script +++ b/test/test-program.script @@ -41,14 +41,14 @@ (assert-equal (run-program (symbol-call :lisp-invocation :lisp-invocation-arglist :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) '("hello, world")) (assert-equal (run-program (symbol-call :lisp-invocation :lisp-invocation-arglist :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")) :output :lines) '("hello, world" -- GitLab