Fix TR's GUI test harness.

This commit is contained in:
Vincent St-Amour 2011-02-28 16:55:54 -05:00
parent fe8f1c3591
commit 498ee4bea1
2 changed files with 2 additions and 2 deletions

View File

@ -1,2 +1,2 @@
#!/bin/sh
gracket -e '(begin (require "main.ss") (go))'
gracket -e '(begin (require "main.ss") (go tests))'

View File

@ -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")]))