unbreak benchmark starters

This commit is contained in:
Matthew Flatt 2019-10-28 14:02:12 -06:00
parent a81f9c1c6d
commit 7d58a92af1
3 changed files with 4 additions and 2 deletions

View File

@ -432,7 +432,7 @@ exec racket -qu "$0" ${1+"$@"}
void
mk-racket
(lambda (bm)
(system* (or (hash-ref executables "racket") (find-exe)) "-u" (compiled-path bm)))
(system* (or (hash-ref executables "racket" #f) (find-exe)) "-u" (compiled-path bm)))
extract-racket-times
clean-up-zo
racket-skip-progs)

View File

@ -287,7 +287,9 @@ exec racket -qu "$0" ${1+"$@"}
(define-values (actual-benchmarks-to-run
actual-implementations-to-run
num-iterations)
num-iterations
executables
names)
(process-command-line benchmark-names null
(map car testers) non-defaults
3))