fix 'raco profile' parameter parsing

This commit is contained in:
ben 2016-01-09 11:18:49 -05:00
parent b3ebd557b1
commit e32bab94ea

View File

@ -18,13 +18,13 @@
[("--delay") n
"Sampling rate (seconds)"
(let ([n* (string->number n)])
(unless (real? n)
(unless (real? n*)
(raise-argument-error 'raco-profile "real?" n*))
(set! delay n*))]
[("--repeat") n
"Number of iterations"
(let ([n* (string->number n)])
(unless (integer?)
(unless (integer? n*)
(raise-argument-error 'raco-profile "integer?" n*))
(set! iterations n*))]
[("--all-threads")