]> gitweb.factorcode.org Git - factor.git/commitdiff
fix tests
authorSlava Pestov <slava@factorcode.org>
Thu, 4 Nov 2004 04:42:48 +0000 (04:42 +0000)
committerSlava Pestov <slava@factorcode.org>
Thu, 4 Nov 2004 04:42:48 +0000 (04:42 +0000)
library/test/test.factor
library/test/x86-compiler/bail-out.factor

index f34b1094c020d9fc51e39be61a0924c9cb4c0962..80790e3a7ac6e69e7fc03bd7c4b02ecda83a1446 100644 (file)
@@ -122,6 +122,7 @@ USE: unparser
                 "x86-compiler/simple"
                 "x86-compiler/ifte"
                 "x86-compiler/generic"
+                "x86-compiler/bail-out"
             ] [
                 test
             ] each
index ed83db3049997cc4e5569b4b0cbcfcb13a751d08..53242de9c1c687d91d8aba87fe460bf87d349bc1 100644 (file)
@@ -7,9 +7,9 @@ USE: math
 USE: stack
 USE: test
 
-: cannot-compile call + ;
+: bail-out call + ;
 
-[ f ] [ [ \ cannot-compile compile ] [ not ] catch ] unit-test
-[ f ] [ [ \ cannot-compile compile ] [ not ] catch ] unit-test
+[ f ] [ [ \ bail-out compile ] [ not ] catch ] unit-test
+[ f ] [ [ \ bail-out compile ] [ not ] catch ] unit-test
 
-[ 4 ] [ [ 2 2 ] cannot-compile ] unit-test
+[ 4 ] [ [ 2 2 ] bail-out ] unit-test