From b9d67eea2f08e5eed8a5d28539aa749e2a64f790 Mon Sep 17 00:00:00 2001 From: Vincent St-Amour Date: Fri, 10 Dec 2010 16:55:37 -0500 Subject: [PATCH] Allow running individual TR tests. --- collects/tests/typed-scheme/run.rkt | 1 + 1 file changed, 1 insertion(+) diff --git a/collects/tests/typed-scheme/run.rkt b/collects/tests/typed-scheme/run.rkt index 7981d6bc33..a9b16f90f2 100644 --- a/collects/tests/typed-scheme/run.rkt +++ b/collects/tests/typed-scheme/run.rkt @@ -30,6 +30,7 @@ (cond [(and (unit?) (int?)) tests] [(unit?) unit-tests] [(int?) int-tests] + [(the-tests) (the-tests)] [else (error "You must specify which tests should be run. See --help for more info.\n")]))