really boot primitive-eval from scheme.
[bpt/guile.git] / test-suite / tests / gc.test
index cf252ce..f5848fb 100644 (file)
 
             (for-each (lambda (x) (guard (make-module))) (iota total))
 
-            ;; XXX: This hack aims to clean up the stack to make sure we
-            ;; don't leave a reference to one of the modules we created.  It
-            ;; proved to be useful on SPARC:
-            ;; http://lists.gnu.org/archive/html/guile-devel/2008-02/msg00006.html .
-             (let cleanup ((i 20))
-               (and (> i 0)
-                    (begin (cleanup (1- i)) i)))
-
-            (gc)
+             (gc)
             (gc) ;; twice: have to kill the weak vectors.
-             (= (length (filter (lambda (x)
-                                  (eq? x #t))
-                                (map (lambda (x) (and (guard) #t))
-                                     (iota total))))
+             (gc) ;; thrice: because the test doesn't succeed with only
+                  ;; one gc round. not sure why.
+
+             (= (let lp ((i 0))
+                  (if (guard)
+                      (lp (1+ i))
+                      i))
                 total))))
+