]> gitweb.factorcode.org Git - factor.git/blobdiff - core/kernel/kernel-tests.factor
kernel: move recusrive-hashcode to math and add test
[factor.git] / core / kernel / kernel-tests.factor
index a1942a4de870d5a40fc7cf0a97330ab43431fc5b..79f4aac263a4ca0882bbd3cfecf5cad0c8cf822e 100644 (file)
@@ -22,10 +22,13 @@ IN: kernel.tests
     }
 } [ 1 2 10 <iota> [ 3array ] 2with map ] unit-test
 
+
 ! Don't leak extra roots if error is thrown
 { } [ 1000 [ [ 3 throw ] ignore-errors ] times ] unit-test
 
-{ } [ 1000 [ [ -1 f <array> ] ignore-errors ] times ] unit-test
+[ -1 f <array> ] must-fail
+{ } [ 10 [ [ -1 f <array> ] ignore-errors ] times ] unit-test
+! { } [ 1000 [ [ -1 f <array> ] ignore-errors ] times ] unit-test ! Travis CI fails
 
 ! Make sure we report the correct error on stack underflow
 [ clear drop ] [
@@ -204,3 +207,5 @@ IN: kernel.tests
 
 { 2 3 4 1 } [ 1 2 3 4 roll ] unit-test
 { 1 2 3 4 } [ 2 3 4 1 -roll ] unit-test
+
+{ } [ "kernel" reload ] long-unit-test
\ No newline at end of file