Disabled thread-ring in the harness, since it calls exit and doesn't

display its running time.
This commit is contained in:
Vincent St-Amour 2010-06-18 14:56:46 -04:00
parent 1dc963684b
commit 894d159123
2 changed files with 2 additions and 2 deletions

View File

@ -149,7 +149,7 @@ exec racket -qu "$0" ${1+"$@"}
spectralnorm-unsafe spectralnorm-unsafe
strcat strcat
sumcol sumcol
thread-ring ;; thread-ring ; calls exit, so won't display running time
wc wc
wordfreq)) wordfreq))

View File

@ -51,7 +51,7 @@
("spectralnorm-unsafe" "1000") ("spectralnorm-unsafe" "1000")
("strcat" "50000000") ("strcat" "50000000")
("sumcol" #f ,(lambda () (mk-sumcol-input))) ("sumcol" #f ,(lambda () (mk-sumcol-input)))
("thread-ring" "1000000") ("thread-ring" "1000000") ; calls exit, so won't display running time
("wc" #f ,(lambda () (mk-wc-input))) ("wc" #f ,(lambda () (mk-wc-input)))
("wordfreq" #f ,(lambda () (mk-wordfreq-input))) ("wordfreq" #f ,(lambda () (mk-wordfreq-input)))
)) ))