adjust some test timeouts

This commit is contained in:
Matthew Flatt 2019-10-17 16:58:57 -06:00
parent 3bf637f6f9
commit 334bfd2f3c
3 changed files with 9 additions and 1 deletions

View File

@ -1,3 +1,3 @@
#lang info #lang info
(define test-timeouts '(("test.rkt" 1000))) (define test-timeouts '(("test.rkt" 1500)))

View File

@ -1,6 +1,10 @@
#lang racket/base #lang racket/base
(require "test-util.rkt") (require "test-util.rkt")
(module+ test
(module config info
(define timeout 180)))
(parameterize ([current-contract-namespace (parameterize ([current-contract-namespace
(make-basic-contract-namespace (make-basic-contract-namespace
'racket/class 'racket/class

View File

@ -1,5 +1,9 @@
#lang racket/base #lang racket/base
(module+ test
(module config info
(define timeout 300)))
(define (do-thread t) (thread t)) (define (do-thread t) (thread t))
(set! do-thread do-thread) (set! do-thread do-thread)