added ''#%futures to the list of primitives
This commit is contained in:
parent
35284eafbe
commit
d90aec1d57
|
@ -79,6 +79,7 @@
|
||||||
(namespace-require ''#%kernel)
|
(namespace-require ''#%kernel)
|
||||||
(namespace-require ''#%unsafe)
|
(namespace-require ''#%unsafe)
|
||||||
(namespace-require ''#%flfxnum)
|
(namespace-require ''#%flfxnum)
|
||||||
|
(namespace-require ''#%futures)
|
||||||
(for/list ([l (namespace-mapped-symbols)])
|
(for/list ([l (namespace-mapped-symbols)])
|
||||||
(cons l (with-handlers ([exn:fail? (lambda (x)
|
(cons l (with-handlers ([exn:fail? (lambda (x)
|
||||||
#f)])
|
#f)])
|
||||||
|
|
|
@ -2,15 +2,15 @@
|
||||||
|
|
||||||
;; Tries to parse all the files in collects and sees how long it takes.
|
;; Tries to parse all the files in collects and sees how long it takes.
|
||||||
;;
|
;;
|
||||||
;; TODO: figure out why it fails to get the module bytecode for
|
;; Files that take too long get categorized as timeouts.
|
||||||
;; collects/tests/matrix-test.rkt. I'm seeing the following:
|
|
||||||
;; read-syntax: cannot load snip-class reader
|
|
||||||
|
|
||||||
(require "../parser/parse-bytecode.rkt"
|
(require "../parser/parse-bytecode.rkt"
|
||||||
"../call-with-timeout.rkt"
|
"../call-with-timeout.rkt"
|
||||||
racket/list
|
racket/list
|
||||||
racket/path)
|
racket/path)
|
||||||
|
|
||||||
|
|
||||||
(define collects-dir
|
(define collects-dir
|
||||||
(normalize-path
|
(normalize-path
|
||||||
(let ([p (find-system-path 'collects-dir)])
|
(let ([p (find-system-path 'collects-dir)])
|
||||||
|
@ -44,4 +44,6 @@
|
||||||
|
|
||||||
|
|
||||||
(unless (empty? failures)
|
(unless (empty? failures)
|
||||||
(printf "Failed on: ~s" failures))
|
(printf "Failed on:\n")
|
||||||
|
(for ([f failures])
|
||||||
|
(printf "~s\n" f)))
|
Loading…
Reference in New Issue
Block a user