added in sk's diabolical test case with generators
This commit is contained in:
parent
03fd12cf41
commit
dc441e79c8
|
@ -396,7 +396,7 @@
|
|||
|
||||
|
||||
;; call-with-current-continuation
|
||||
;; call/cc
|
||||
call/cc
|
||||
;; call-with-continuation-prompt
|
||||
;; abort-current-continuation
|
||||
;; default-continuation-prompt-tag
|
||||
|
|
|
@ -63,6 +63,14 @@ EOF
|
|||
|
||||
(define-syntax (test stx)
|
||||
(syntax-case stx ()
|
||||
[(_ original-source-file-path)
|
||||
(with-syntax ([expected-file-path
|
||||
(regexp-replace "\\.rkt$"
|
||||
(syntax-e
|
||||
#'original-source-file-path)
|
||||
".expected")])
|
||||
|
||||
#'(test original-source-file-path expected-file-path))]
|
||||
[(_ original-source-file-path expected-file-path)
|
||||
(with-syntax ([stx stx]
|
||||
[source-file-path (parameterize ([current-directory
|
||||
|
|
|
@ -2,5 +2,10 @@
|
|||
|
||||
(require "../browser-harness.rkt")
|
||||
|
||||
(test "hello.rkt" "hello.expected")
|
||||
#;(test "simple-structs.rkt" "simple-structs.expected")
|
||||
;; Each of the tests below do a string-compare of the standard output
|
||||
;; content vs. a text file with the same name, but with the .rkt file
|
||||
;; type replaced with .expected.
|
||||
|
||||
(test "hello.rkt")
|
||||
(test "sk-generator.rkt")
|
||||
#;(test "simple-structs.rkt")
|
3
tests/more-tests/sk-generator.expected
Normal file
3
tests/more-tests/sk-generator.expected
Normal file
|
@ -0,0 +1,3 @@
|
|||
"a"
|
||||
"b"
|
||||
"c"
|
22
tests/more-tests/sk-generator.rkt
Normal file
22
tests/more-tests/sk-generator.rkt
Normal file
|
@ -0,0 +1,22 @@
|
|||
#lang planet dyoo/whalesong
|
||||
(define (make-gen gen)
|
||||
(let ([cont #f])
|
||||
(lambda ()
|
||||
(call/cc (lambda (caller)
|
||||
(if cont
|
||||
(cont caller)
|
||||
(gen (lambda (v)
|
||||
(call/cc (lambda (gen-k)
|
||||
(begin
|
||||
(set! cont gen-k)
|
||||
(caller v))))))))))))
|
||||
|
||||
(define g1 (make-gen (lambda (return)
|
||||
(begin
|
||||
(return "a")
|
||||
(return "b")
|
||||
(return "c")))))
|
||||
|
||||
(g1)
|
||||
(g1)
|
||||
(g1)
|
Loading…
Reference in New Issue
Block a user