Distributed Places add runtime-paths, turn off tests.
This commit is contained in:
parent
09bed0d61e
commit
cc716392da
|
@ -1861,8 +1861,6 @@ path/s is either such a string or a list of them.
|
|||
"collects/tests/racket/pathlib.rktl" drdr:command-line (racket "-f" *)
|
||||
"collects/tests/racket/pconvert.rktl" drdr:command-line #f
|
||||
"collects/tests/racket/place" responsible (tewk)
|
||||
"collects/tests/racket/place/distributed/distributed.rkt" drdr:command-line (racket "-tm" *)
|
||||
"collects/tests/racket/place/distributed/restarter.rkt" drdr:command-line (racket "-tm" *)
|
||||
"collects/tests/racket/place-chan-rand-help.rkt" responsible (tewk)
|
||||
"collects/tests/racket/place-chan-rand.rkt" responsible (tewk) drdr:random #t
|
||||
"collects/tests/racket/place-channel-fd.rkt" responsible (tewk) drdr:command-line (racket "-tm" *)
|
||||
|
|
|
@ -5,6 +5,7 @@
|
|||
scriblib/figure
|
||||
racket/port
|
||||
racket/contract
|
||||
racket/runtime-path
|
||||
(for-label racket/place/distributed))
|
||||
|
||||
@(define (codeblockfromfile filename)
|
||||
|
@ -13,6 +14,9 @@
|
|||
(lambda (i)
|
||||
(codeblock (port->string i)))))
|
||||
|
||||
@(define-runtime-path master-path "../../racket/place/distributed/examples/named/master.rkt")
|
||||
@(define-runtime-path tuple-path "../../racket/place/distributed/examples/named/tuple.rkt")
|
||||
|
||||
@title[#:tag "distributed-places"]{Distributed Places}
|
||||
|
||||
The @racketmodname[racket/place/distributed] library provides support for
|
||||
|
@ -26,7 +30,7 @@ The example code can also be found in
|
|||
@filepath{racket/distributed/examples/named/master.rkt}.
|
||||
|
||||
@figure["named-example-master" "examples/named/master.rkt"]{
|
||||
@codeblockfromfile["../../racket/place/distributed/examples/named/master.rkt"]}
|
||||
@codeblockfromfile[(path->string master-path)]}
|
||||
|
||||
The @racket[spawn-remote-racket-vm] primitive connects to
|
||||
@tt{"localhost"} and starts a racloud node there that listens on port
|
||||
|
@ -49,7 +53,7 @@ suitiable for invocation by @racket[supervise-named-place-thunk-at].
|
|||
|
||||
|
||||
@figure["named-example" "examples/named/tuple.rkt"]{
|
||||
@codeblockfromfile["../../racket/place/distributed/examples/named/tuple.rkt"]}
|
||||
@codeblockfromfile[(path->string tuple-path)]}
|
||||
|
||||
|
||||
|
||||
|
|
Loading…
Reference in New Issue
Block a user