Re: [racket-users] raco test

2017-03-27 Thread Matthew Flatt
I'd expect it to work for a single file but fail for multiple files, because the default `--process` mode for `raco test` won't pass along the `-S` directory. Probably `--process` mode should pass along the right collection paths. Meanwhile, if that's the problem, then using `--places` mode or

[racket-users] raco test

2017-03-27 Thread Dan Liebgold
Hi, I'd like to invoke 'raco test' with additional collection paths passed in via the command line. I'm trying this: racket.exe -S -l- raco test , but that -S parameter doesn't seem to take effect. Thanks, Dan -- You received this message because you are subscribed to the Google Groups

[racket-users] empty lines in a grammer of defform of scribble

2017-03-27 Thread Jos Koot
When I use #:grammar in a defform, the rules of the grammer are separated by empty lines. I would like to avoid these empty lines. Is it possible? The contracts of #:contracts do not have empty lines between them. I ask this question because I have a rather long grammar that would fit in one page

[racket-users] Contracts not enforced with serial-lambda

2017-03-27 Thread Philip McGrath
I've been playing around with trying to attach contracts to serializable procedures created with serial-lambda. What I've been trying to do hasn't been working, and I've also come across some surprising behavior. For example, this program: > #lang racket > (require web-server/lang/serial-lambda >