Delete compiled benchmarks when testing.

original commit: f7436b59fb3d1f91481216148f4e147315b0144c
This commit is contained in:
Vincent St-Amour 2010-09-30 16:09:11 -04:00
parent 1fb2c973f0
commit 8c6264008d

View File

@ -2,7 +2,7 @@
(provide go go/text)
(require rackunit rackunit/text-ui
(require rackunit rackunit/text-ui racket/file
mzlib/etc scheme/port
compiler/compiler
scheme/match mzlib/compile
@ -134,7 +134,9 @@
(check-not-exn (λ () (cfile (build-path path p)))))))))
(test-suite "compiling"
(mk shootout)
(mk common)))
(delete-directory/files (build-path shootout "compiled"))
(mk common)
(delete-directory/files (build-path common "compiled"))))
(provide go go/text just-one compile-benchmarks)