Increase timeouts.

This commit is contained in:
Sam Tobin-Hochstadt 2021-05-24 15:25:09 -04:00
parent 095937b324
commit b6b1ffec03
3 changed files with 10 additions and 1 deletions

View File

@ -74,3 +74,8 @@
(list "-e"
(path->string
(collection-file-path "pre-base.rkt" "racket/private")))))))
(module+ test
(module config info
(define timeout 600)))

View File

@ -8,3 +8,7 @@
(map place-wait
(for/list ([i 4])
(dynamic-place ''#%kernel 'list))))
(module+ test
(module config info
(define timeout 600)))

View File

@ -2,7 +2,7 @@
(module+ test
(module config info
(define timeout 500)))
(define timeout 1000)))
(define (do-thread t) (thread t))
(set! do-thread do-thread)