]> gitweb.factorcode.org Git - factor.git/commitdiff
tools.profiler.sampling: bring back profile tests on win32
authorJohn Benediktsson <mrjbq7@gmail.com>
Thu, 24 Aug 2023 16:45:18 +0000 (09:45 -0700)
committerJohn Benediktsson <mrjbq7@gmail.com>
Thu, 24 Aug 2023 16:45:18 +0000 (09:45 -0700)
basis/tools/profiler/sampling/sampling-tests.factor

index 562ae07eba1be07a5e32629ed8d28d80a0066889..30b4c4ffc64672b97d5386b188ae4f6cff9e75ae 100644 (file)
@@ -1,5 +1,5 @@
 USING: assocs byte-arrays calendar kernel kernel.private math
-memory namespaces parser random sequences system threads
+memory namespaces parser random sequences threads
 tools.profiler.sampling tools.profiler.sampling.private
 tools.test ;
 IN: tools.profiler.sampling.tests
@@ -11,7 +11,6 @@ IN: tools.profiler.sampling.tests
 ] unit-test
 
 ! Make sure the profiler doesn't blow up the VM
-os windows? cpu x86.32? and [
 { } [ 10 [ [ ] profile ] times ] unit-test
 TUPLE: boom ;
 [ 10 [ [ boom new throw ] profile ] times ] [ boom? ] must-fail-with
@@ -60,4 +59,3 @@ gc
     ! sometimes generated for some unknown reason.
     gc [ ] profile get-samples length 1 <=
 ] unit-test
-] unless