Newlines at EOFs scan.
This commit is contained in:
parent
b265e260b2
commit
cec73f5652
|
@ -205,4 +205,4 @@ eos
|
||||||
(check-equal? (pipe-stdi (read-csv-file 'standard-in)) '(("word1" "word2") ("word3" "word4"))
|
(check-equal? (pipe-stdi (read-csv-file 'standard-in)) '(("word1" "word2") ("word3" "word4"))
|
||||||
"as-cvs 1")
|
"as-cvs 1")
|
||||||
(check-equal? (pipe-stdi (read-csv-file/rows 'standard-in length)) '(2 2)
|
(check-equal? (pipe-stdi (read-csv-file/rows 'standard-in length)) '(2 2)
|
||||||
"as-csv/rows"))
|
"as-csv/rows"))
|
||||||
|
|
|
@ -17,4 +17,4 @@
|
||||||
(check-equal? (read-lines "batch-io2.txt") '("hello"))
|
(check-equal? (read-lines "batch-io2.txt") '("hello"))
|
||||||
|
|
||||||
(when (file-exists? file)
|
(when (file-exists? file)
|
||||||
(delete-file file))
|
(delete-file file))
|
||||||
|
|
|
@ -129,4 +129,4 @@ eos
|
||||||
;; -- in -- ;; should be write-file from batch io
|
;; -- in -- ;; should be write-file from batch io
|
||||||
(with-output-to-string (λ () (printf (input->output batch-io3.sexpr)))))
|
(with-output-to-string (λ () (printf (input->output batch-io3.sexpr)))))
|
||||||
|
|
||||||
(check-equal? (solution "don't care") batch-io3-expected))
|
(check-equal? (solution "don't care") batch-io3-expected))
|
||||||
|
|
|
@ -44,4 +44,4 @@
|
||||||
|
|
||||||
(launch-many-worlds (u) (w "one") (w "two") (w "three")))
|
(launch-many-worlds (u) (w "one") (w "two") (w "three")))
|
||||||
|
|
||||||
; (require (submod "." drop-bad))
|
; (require (submod "." drop-bad))
|
||||||
|
|
|
@ -4,4 +4,4 @@
|
||||||
;; This module re-exports its contents for backwards compatibility.
|
;; This module re-exports its contents for backwards compatibility.
|
||||||
|
|
||||||
(require parser-tools/cfg-parser)
|
(require parser-tools/cfg-parser)
|
||||||
(provide (all-from-out parser-tools/cfg-parser))
|
(provide (all-from-out parser-tools/cfg-parser))
|
||||||
|
|
|
@ -212,4 +212,4 @@
|
||||||
#|
|
#|
|
||||||
scheme-report-environment null-environment interaction-environment
|
scheme-report-environment null-environment interaction-environment
|
||||||
|#
|
|#
|
||||||
)
|
)
|
||||||
|
|
|
@ -2079,4 +2079,4 @@
|
||||||
|
|
||||||
(define sllgen:apply-reduction
|
(define sllgen:apply-reduction
|
||||||
(lambda (lhs opcode args)
|
(lambda (lhs opcode args)
|
||||||
(apply opcode args)))
|
(apply opcode args)))
|
||||||
|
|
|
@ -736,4 +736,4 @@
|
||||||
(check-equal? (prime-strong-pseudo-single? 11) 'probably-prime)
|
(check-equal? (prime-strong-pseudo-single? 11) 'probably-prime)
|
||||||
;; Carmichael number:
|
;; Carmichael number:
|
||||||
(check-true (member? (prime-strong-pseudo-single? 561) (cons 'probably-prime (divisors 561))))
|
(check-true (member? (prime-strong-pseudo-single? 561) (cons 'probably-prime (divisors 561))))
|
||||||
)
|
)
|
||||||
|
|
|
@ -39,4 +39,4 @@
|
||||||
|
|
||||||
(define unsafe-car :unsafe-car)
|
(define unsafe-car :unsafe-car)
|
||||||
(define unsafe-cdr :unsafe-cdr)
|
(define unsafe-cdr :unsafe-cdr)
|
||||||
|#
|
|#
|
||||||
|
|
|
@ -1082,4 +1082,4 @@
|
||||||
(check-equal? (rate-position (move-gt (first (game-moves tree0))) AI-DEPTH)
|
(check-equal? (rate-position (move-gt (first (game-moves tree0))) AI-DEPTH)
|
||||||
1/2)
|
1/2)
|
||||||
|
|
||||||
"all tests run")
|
"all tests run")
|
||||||
|
|
|
@ -1112,4 +1112,4 @@
|
||||||
1/2)
|
1/2)
|
||||||
|
|
||||||
(set-grid old-size)
|
(set-grid old-size)
|
||||||
"all tests run")
|
"all tests run")
|
||||||
|
|
|
@ -145,4 +145,4 @@
|
||||||
(check-equal? (draw-guess "50") (overlay (text "50" SIZE COLOR) MT-SC))
|
(check-equal? (draw-guess "50") (overlay (text "50" SIZE COLOR) MT-SC))
|
||||||
(check-equal? (draw-guess "25") (overlay (text "25" SIZE COLOR) MT-SC))
|
(check-equal? (draw-guess "25") (overlay (text "25" SIZE COLOR) MT-SC))
|
||||||
|
|
||||||
"client: all tests run")
|
"client: all tests run")
|
||||||
|
|
|
@ -54,4 +54,4 @@
|
||||||
(define (bad)
|
(define (bad)
|
||||||
(launch-many-worlds (launch-guess-client "Adam" LOCALHOST)
|
(launch-many-worlds (launch-guess-client "Adam" LOCALHOST)
|
||||||
(launch-guess-server)
|
(launch-guess-server)
|
||||||
(launch-guess-client "Beatrice" LOCALHOST)))
|
(launch-guess-client "Beatrice" LOCALHOST)))
|
||||||
|
|
|
@ -56,4 +56,4 @@
|
||||||
(launch-many-worlds
|
(launch-many-worlds
|
||||||
(bon-appetit)
|
(bon-appetit)
|
||||||
(lets-eat "Matthias" LOCALHOST)
|
(lets-eat "Matthias" LOCALHOST)
|
||||||
(lets-eat "David" LOCALHOST)))
|
(lets-eat "David" LOCALHOST)))
|
||||||
|
|
|
@ -987,4 +987,4 @@ The server is responsible for:
|
||||||
(check-equal? (broadcast-universe state)
|
(check-equal? (broadcast-universe state)
|
||||||
(broadcast-universe state)))
|
(broadcast-universe state)))
|
||||||
|
|
||||||
"server: all tests run")
|
"server: all tests run")
|
||||||
|
|
|
@ -1,3 +1,3 @@
|
||||||
#lang setup/infotab
|
#lang setup/infotab
|
||||||
|
|
||||||
(define compile-omit-paths '("ufo-source.rkt"))
|
(define compile-omit-paths '("ufo-source.rkt"))
|
||||||
|
|
|
@ -860,4 +860,4 @@
|
||||||
(check-equal? (decay (goo (posn 3 5) 8))
|
(check-equal? (decay (goo (posn 3 5) 8))
|
||||||
(goo (posn 3 5) 7))
|
(goo (posn 3 5) 7))
|
||||||
|
|
||||||
"all tests run")
|
"all tests run")
|
||||||
|
|
|
@ -882,4 +882,4 @@
|
||||||
|
|
||||||
(prop:rand-frac-range 1000)
|
(prop:rand-frac-range 1000)
|
||||||
|
|
||||||
"all tests run")
|
"all tests run")
|
||||||
|
|
|
@ -1,4 +1,3 @@
|
||||||
|
|
||||||
/* Support for styles in scribble/sigplan */
|
/* Support for styles in scribble/sigplan */
|
||||||
|
|
||||||
.SAuthorPlace, .SAuthorEmail,
|
.SAuthorPlace, .SAuthorEmail,
|
||||||
|
@ -10,4 +9,4 @@
|
||||||
.SSubtitle {
|
.SSubtitle {
|
||||||
display: block;
|
display: block;
|
||||||
font-size: smaller;
|
font-size: smaller;
|
||||||
}
|
}
|
||||||
|
|
|
@ -12,4 +12,4 @@ Command-line flags:
|
||||||
@itemlist[
|
@itemlist[
|
||||||
@item{@Flag{h} or @DFlag{help} --- show help information for this command}
|
@item{@Flag{h} or @DFlag{help} --- show help information for this command}
|
||||||
@item{@DFlag{} --- do not treat remaining arguments as switches}
|
@item{@DFlag{} --- do not treat remaining arguments as switches}
|
||||||
]
|
]
|
||||||
|
|
|
@ -10,4 +10,3 @@ New code should use racket-lexer.rkt.
|
||||||
(rename-out [racket-lexer scheme-lexer]
|
(rename-out [racket-lexer scheme-lexer]
|
||||||
[racket-lexer/status scheme-lexer/status]
|
[racket-lexer/status scheme-lexer/status]
|
||||||
[racket-nobar-lexer/status scheme-nobar-lexer/status]))
|
[racket-nobar-lexer/status scheme-nobar-lexer/status]))
|
||||||
|
|
|
@ -64,4 +64,4 @@
|
||||||
;; 2013-02-20: checks commit bd1141c670bfc7981761fbfb53f548c2abb1f12d
|
;; 2013-02-20: checks commit bd1141c670bfc7981761fbfb53f548c2abb1f12d
|
||||||
;; (previous version results in contract error)
|
;; (previous version results in contract error)
|
||||||
(check-true (well-formed-set? (integer-set-contents (stream-rest (make-range 1 10)))))
|
(check-true (well-formed-set? (integer-set-contents (stream-rest (make-range 1 10)))))
|
||||||
(check-true (well-formed-set? (integer-set-contents (sequence-tail (make-range 1 10) 1))))
|
(check-true (well-formed-set? (integer-set-contents (sequence-tail (make-range 1 10) 1))))
|
||||||
|
|
|
@ -25,4 +25,4 @@
|
||||||
(λ (tag)
|
(λ (tag)
|
||||||
(abort-current-continuation tag "bad"))))
|
(abort-current-continuation tag "bad"))))
|
||||||
|
|
||||||
(require 'untyped)
|
(require 'untyped)
|
||||||
|
|
|
@ -31,4 +31,4 @@
|
||||||
(call-f
|
(call-f
|
||||||
(λ (tag) ((make-abort-k tag) 'bad))))
|
(λ (tag) ((make-abort-k tag) 'bad))))
|
||||||
|
|
||||||
(require 'untyped)
|
(require 'untyped)
|
||||||
|
|
|
@ -26,4 +26,4 @@
|
||||||
(default-continuation-prompt-tag)
|
(default-continuation-prompt-tag)
|
||||||
(λ (x) x)))))
|
(λ (x) x)))))
|
||||||
|
|
||||||
(require 'typed)
|
(require 'typed)
|
||||||
|
|
|
@ -3,4 +3,4 @@
|
||||||
#lang typed/racket
|
#lang typed/racket
|
||||||
|
|
||||||
(: f (All (a ...) (a ... a -> (Values a ... a))))
|
(: f (All (a ...) (a ... a -> (Values a ... a))))
|
||||||
(define (f . x) x)
|
(define (f . x) x)
|
||||||
|
|
|
@ -3,4 +3,4 @@
|
||||||
#lang typed/racket
|
#lang typed/racket
|
||||||
|
|
||||||
(: f (All (a ...) (a ... a -> (Values a ... a))))
|
(: f (All (a ...) (a ... a -> (Values a ... a))))
|
||||||
(define f (lambda: (x : a ... a) x))
|
(define f (lambda: (x : a ... a) x))
|
||||||
|
|
|
@ -7,4 +7,4 @@
|
||||||
;; This should fail because of the type variable arities
|
;; This should fail because of the type variable arities
|
||||||
(: f (All (b) (b -> b)))
|
(: f (All (b) (b -> b)))
|
||||||
(define f
|
(define f
|
||||||
(plambda: (a b) ([x : b]) x))
|
(plambda: (a b) ([x : b]) x))
|
||||||
|
|
|
@ -10,4 +10,4 @@
|
||||||
(plambda: (b) ([x : b])
|
(plambda: (b) ([x : b])
|
||||||
(plambda: (b) ([y : b])
|
(plambda: (b) ([y : b])
|
||||||
(set! x y))
|
(set! x y))
|
||||||
x))
|
x))
|
||||||
|
|
|
@ -6,4 +6,4 @@
|
||||||
|
|
||||||
;; The 'a' is bound in two different scopes
|
;; The 'a' is bound in two different scopes
|
||||||
(plambda: (a) ([x : a])
|
(plambda: (a) ([x : a])
|
||||||
(plambda: (a) ([y : a]) (set! x y)))
|
(plambda: (a) ([y : a]) (set! x y)))
|
||||||
|
|
|
@ -29,4 +29,4 @@
|
||||||
(+ 2
|
(+ 2
|
||||||
(call-with-continuation-prompt
|
(call-with-continuation-prompt
|
||||||
(λ () (+ 1 (abort-current-continuation pt3 (λ () 5))))
|
(λ () (+ 1 (abort-current-continuation pt3 (λ () 5))))
|
||||||
pt3))
|
pt3))
|
||||||
|
|
|
@ -681,4 +681,4 @@
|
||||||
" ╚══╩══╝)1\n")))
|
" ╚══╩══╝)1\n")))
|
||||||
(parameterize ([current-readtable (make-2d-readtable)])
|
(parameterize ([current-readtable (make-2d-readtable)])
|
||||||
(check-true (vector? (read sp)))
|
(check-true (vector? (read sp)))
|
||||||
(check-equal? (read sp) 1)))
|
(check-equal? (read sp) 1)))
|
||||||
|
|
|
@ -74,4 +74,4 @@
|
||||||
(format "all of the y-direction questions were false (x coordinate ~a was true)"
|
(format "all of the y-direction questions were false (x coordinate ~a was true)"
|
||||||
dir)
|
dir)
|
||||||
"all of the x-direction questions were false"))
|
"all of the x-direction questions were false"))
|
||||||
(error '2dcond str))
|
(error '2dcond str))
|
||||||
|
|
|
@ -1,3 +1,3 @@
|
||||||
#lang racket/base
|
#lang racket/base
|
||||||
(require "private/lexer.rkt")
|
(require "private/lexer.rkt")
|
||||||
(provide lexer)
|
(provide lexer)
|
||||||
|
|
Loading…
Reference in New Issue
Block a user