typed-racket/typed-racket-test/run.rkt
Sam Tobin-Hochstadt 43a8cce3fc Reorganize the TR testing files, and add progress output.
`typed-racket-test/main` is now the file to run for almost everything.
`typed-racket-test/run` continues to exist so that DrDr preserves the
timing history.

Integration tests now print a progress meter, which should fix the
Travis timeouts.
2015-12-29 16:43:25 -05:00

10 lines
266 B
Racket

#lang racket
;; Test mode:
(module test racket/base
(require syntax/location)
(parameterize ([current-command-line-arguments (vector "--nightly")])
(dynamic-require '(submod typed-racket-test/main main) 0))
(module config info
(define timeout 1800)))