diff --git a/test-suite/tests/srfi-39.test b/test-suite/tests/srfi-39.test index 22d2bd056..51a173c8d 100644 --- a/test-suite/tests/srfi-39.test +++ b/test-suite/tests/srfi-39.test @@ -1,6 +1,6 @@ ;;;; srfi-39.test --- -*- scheme -*- ;;;; -;;;; Copyright (C) 2004 Free Software Foundation, Inc. +;;;; Copyright (C) 2004, 2005 Free Software Foundation, Inc. ;;;; ;;;; This program is free software; you can redistribute it and/or modify ;;;; it under the terms of the GNU General Public License as published by @@ -52,3 +52,64 @@ (parameterize ((c (a)) (d (b))) (and (check a b 0 1) (check c d 0 1))))))) + +(let () + (define (test-ports param new-port new-port-2) + (let ((old-port (param))) + + (pass-if "new value" + (parameterize ((param new-port)) + (eq? (param) new-port))) + + (pass-if "set value" + (parameterize ((param old-port)) + (param new-port) + (eq? (param) new-port))) + + (pass-if "old restored" + (parameterize ((param new-port)) + #f) + (eq? (param) old-port)) + + (pass-if "throw exit" + (catch 'bail + (lambda () + (parameterize ((param new-port)) + (throw 'bail))) + (lambda args #f)) + (eq? (param) old-port)) + + (pass-if "call-with-current-continuation re-enter" + (let ((cont #f) + (count 0) + (port #f) + (good #t)) + (parameterize ((param new-port)) + (call-with-current-continuation (lambda (k) (set! cont k))) + (set! count (1+ count)) + (set! port (param)) + (if (= 1 count) (param new-port-2))) + (set! good (and good (eq? (param) old-port))) + (case count + ((1) + (set! good (and good (eq? port new-port))) + ;; re-entering should give new-port-2 left there last time + (cont)) + ((2) + (set! good (and good (eq? port new-port-2))))) + good)) + + (pass-if "original unchanged" + (eq? (param) old-port)))) + + (with-test-prefix "current-input-port" + (test-ports current-input-port + (open-input-string "xyz") (open-input-string "xyz"))) + + (with-test-prefix "current-output-port" + (test-ports current-output-port + (open-output-string) (open-output-string))) + + (with-test-prefix "current-error-port" + (test-ports current-error-port + (open-output-string) (open-output-string))))