From 8f088b820b81017af3e5670eae99c8adcd66fead Mon Sep 17 00:00:00 2001 From: Vincent St-Amour Date: Fri, 16 Jul 2010 19:01:28 -0400 Subject: [PATCH] Don't abort typed racket's tests if the main tests fail. original commit: 8563f02ba82edd822f0e6a6b39ff915d5708587a --- collects/tests/typed-scheme/run.rkt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/collects/tests/typed-scheme/run.rkt b/collects/tests/typed-scheme/run.rkt index 0266f180..e6a5a4e8 100644 --- a/collects/tests/typed-scheme/run.rkt +++ b/collects/tests/typed-scheme/run.rkt @@ -27,7 +27,7 @@ (cond [(and (nightly?) (eq? 'cgc (system-type 'gc))) (printf "Skipping Typed Racket tests.\n")] [(unless (= 0 ((exec) (the-tests))) - (error "Typed Racket Tests did not pass.")) + (eprintf "Typed Racket Tests did not pass.")) (when (opt?) (parameterize ([current-command-line-arguments #()]) (dynamic-require '(file "optimizer/run.rkt") #f))