added in sk's diabolical test case with generators

This commit is contained in:
Danny Yoo 2011-07-01 12:51:39 -04:00
parent 03fd12cf41
commit dc441e79c8
5 changed files with 41 additions and 3 deletions

View File

@ -396,7 +396,7 @@
;; call-with-current-continuation
;; call/cc
call/cc
;; call-with-continuation-prompt
;; abort-current-continuation
;; default-continuation-prompt-tag

View File

@ -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

View File

@ -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")

View File

@ -0,0 +1,3 @@
"a"
"b"
"c"

View 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)