Fixes R6 tests

This commit is contained in:
Casey Klein 2010-08-26 06:04:06 -05:00
parent f13dcc2915
commit c66a727413

View File

@ -19,11 +19,10 @@
(make-r6test `(store () ,t)
(list `(uncaught-exception (make-cond ,err)))))
(define (run-a-test test verbose? quiet?)
(unless quiet?
(define (run-a-test test verbose?)
(unless verbose?
(printf ".")
(flush-output)))
(flush-output))
(let ([t (r6test-test test)]
[expected (r6test-expected test)])
(set! test-count (+ test-count 1))
@ -2024,7 +2023,6 @@ of digits with deconv-base
[compare-with-racket?
(let ()
(struct test-exp (redex racket set))
(define redex-exps '())
(define r6-module-bodies '())
(define missing 0)
@ -2091,7 +2089,7 @@ of digits with deconv-base
(begin (printf "~a tests " name)
(flush-output)))
(set! first? #f)
(for-each (λ (x) (run-a-test x verbose? #f compare-with-racket?)) set))
(for-each (λ (x) (run-a-test x verbose?)) set))
(set! failed-tests 0)
(set! verified-terms 0)