1
Fork 0
mirror of https://git.savannah.gnu.org/git/guile.git synced 2025-06-28 22:10:29 +02:00

Merge remote-tracking branch 'origin/stable-2.0'

Conflicts:
	configure.ac
This commit is contained in:
Andy Wingo 2011-12-13 10:20:44 +01:00
commit bfe35b90ff
10 changed files with 199 additions and 107 deletions

View file

@ -67,3 +67,64 @@
(lambda ()
(parameterize ((inside? #t))
(raise 'some-exception)))))))))
(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/cc re-enter"
(let ((cont #f)
(count 0)
(port #f)
(good #t))
(parameterize ((param new-port))
(call/cc (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))))

View file

@ -661,6 +661,23 @@
(+ a b))))
(const 3))
(pass-if-peval resolve-primitives
;; First order, multiple values.
(let ((x 1) (y 2))
(values x y))
(apply (primitive values) (const 1) (const 2)))
(pass-if-peval resolve-primitives
;; First order, multiple values truncated.
(let ((x (values 1 'a)) (y 2))
(values x y))
(apply (primitive values) (const 1) (const 2)))
(pass-if-peval resolve-primitives
;; First order, multiple values truncated.
(or (values 1 2) 3)
(const 1))
(pass-if-peval
;; First order, coalesced, mutability preserved.
(cons 0 (cons 1 (cons 2 (list 3 4 5))))