increase some test timeouts

This commit is contained in:
Matthew Flatt 2019-10-18 12:11:09 -06:00
parent 772289e2c1
commit 014f3ab800
2 changed files with 5 additions and 1 deletions

View File

@ -5,6 +5,10 @@
;; * allocating shared arrays, and
;; * putting messages into an channel with no receiver
(module+ test
(module config info
(define timeout 200)))
(define (check mode)
(for ([i 20])
(printf "iter ~a\n" i)

View File

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