]> gitweb.factorcode.org Git - factor.git/commitdiff
memory: mark two tests as long since they are slow on Travis.
authorJohn Benediktsson <mrjbq7@gmail.com>
Mon, 9 Nov 2020 20:23:53 +0000 (12:23 -0800)
committerJohn Benediktsson <mrjbq7@gmail.com>
Mon, 9 Nov 2020 20:23:53 +0000 (12:23 -0800)
core/memory/memory-tests.factor

index 1a3b8f1111d0b40f450e7753c0305518f7deb93e..e05b68a8ff9416fc49eba39b2df34335152981ed 100644 (file)
@@ -54,7 +54,7 @@ IN: memory.tests
 
 : leak-loop ( -- ) 100 [ leak-step ] times ;
 
-{ } [ leak-loop ] unit-test
+{ } [ leak-loop ] long-unit-test
 
 ! Bug: allocation of large objects directly into tenured space
 ! can proceed past the high water mark.
@@ -80,7 +80,7 @@ SYMBOL: foo
 
     data-room tenured>> size>>
     assert=
-] unit-test
+] long-unit-test
 
 ! Perform one gc cycle. Then increase the stack height by 100 and
 ! force a gc cycle again.