]> gitweb.factorcode.org Git - factor.git/commitdiff
Temporarily removing test for 'list' in lisp-tests, while switching to cons cells
authorJames Cash <james.nvc@gmail.com>
Wed, 4 Jun 2008 03:40:30 +0000 (23:40 -0400)
committerJames Cash <james.nvc@gmail.com>
Wed, 4 Jun 2008 03:40:30 +0000 (23:40 -0400)
extra/lisp/lisp-tests.factor

index 2358fa3f7e4dcd86a6eda8644009afd6daaabf7a..2603a75cb0e9c9758cbf8be23115ee8673ad44a9 100644 (file)
@@ -13,7 +13,7 @@ IN: lisp.test
     "+" "math" "+" define-primitive
     "-" "math" "-" define-primitive
     
-    "list" [ >array ] lisp-define
+!    "list" [ >array ] lisp-define
     
     { 5 } [
       [ 2 3 ] "+" <lisp-symbol> funcall
@@ -47,8 +47,8 @@ IN: lisp.test
        "((lambda (x) (if x (begin (+ 1 2)) (- 3 5))) #t)" lisp-eval
     ] unit-test
     
-    { { 1 2 3 4 5 } } [
-      "(list 1 2 3 4 5)" lisp-eval
-    ] unit-test
+    { { 1 2 3 4 5 } } [
+      "(list 1 2 3 4 5)" lisp-eval
+    ] unit-test
 
 ] with-interactive-vocabs