From 7635a7927d448af78076b86a74fac0ec15770f83 Mon Sep 17 00:00:00 2001 From: Vincent St-Amour Date: Mon, 28 Feb 2011 16:55:54 -0500 Subject: [PATCH] Fix TR's GUI test harness. original commit: 498ee4bea17298a96a8fc0ffee956e36e3b639c7 --- 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 a9b16f90..2a0c53f6 100644 --- a/collects/tests/typed-scheme/run.rkt +++ b/collects/tests/typed-scheme/run.rkt @@ -30,7 +30,7 @@ (cond [(and (unit?) (int?)) tests] [(unit?) unit-tests] [(int?) int-tests] - [(the-tests) (the-tests)] + [(or (the-tests) (bench?) (opt?)) (the-tests)] [else (error "You must specify which tests should be run. See --help for more info.\n")]))