fix peval test for recent merge
authorAndy Wingo <wingo@pobox.com>
Mon, 30 Apr 2012 18:26:09 +0000 (20:26 +0200)
committerAndy Wingo <wingo@pobox.com>
Mon, 30 Apr 2012 18:26:48 +0000 (20:26 +0200)
* test-suite/tests/peval.test: Fix test for master.

test-suite/tests/peval.test

index 2bd8919..008b5c9 100644 (file)
   ;; residualizing a reference to the leaf identifier.  The bailout is
   ;; driven by the recursive-effort-limit, which is currently 100.  We
   ;; make sure to trip it with this recursive sum thing.
-  (pass-if-peval resolve-primitives
+  (pass-if-peval
     (let ((x (let sum ((n 0) (out 0))
                (if (< n 10000)
                    (sum (1+ n) (+ out n))
                    out))))
       ((lambda (y) (list y)) x))
     (let (x) (_) (_)
-         (apply (primitive list) (lexical x _)))))
+         (primcall list (lexical x _)))))