Support -q
flag for individual pkg tests.
This commit is contained in:
parent
a3142ac257
commit
297fb75009
|
@ -168,7 +168,14 @@
|
|||
e ...))
|
||||
(provide run-pkg-tests)
|
||||
(module+ main
|
||||
(run-pkg-tests* run-pkg-tests)))))]))
|
||||
(require racket/cmdline)
|
||||
(define verb? #t)
|
||||
(command-line
|
||||
#:once-each
|
||||
["-q" "run quietly" (set! verb? #f)]
|
||||
#:args () (void))
|
||||
(parameterize ([verbose? verb?])
|
||||
(run-pkg-tests* run-pkg-tests))))))]))
|
||||
|
||||
(define (run-pkg-tests* t)
|
||||
(putenv "PLT_PKG_NOSETUP" "y")
|
||||
|
|
Loading…
Reference in New Issue
Block a user