From 73046316e622bd35827aca1ad0575fe2d4da6b62 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. original commit: b9d67eea2f08e5eed8a5d28539aa749e2a64f790 --- 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 7981d6bc..a9b16f90 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")]))