Switch to racket/base to fix bizarre bug.

This commit is contained in:
Sam Tobin-Hochstadt 2011-09-07 16:08:00 -04:00
parent b3b9c3fe22
commit cd073ad549

View File

@ -1,8 +1,6 @@
#lang scheme/base
#lang racket/base
(require scheme/runtime-path)
(require racket/runtime-path)
(define-runtime-path run "run.rkt")
(if (eq? 'cgc (system-type 'gc))
(printf "Running under CGC => skipping tests\n")
(parameterize ([current-command-line-arguments '#("--nightly")])
(dynamic-require run #f)))
(parameterize ([current-command-line-arguments '#("--nightly")])
(dynamic-require run #f))