mirror of
https://git.savannah.gnu.org/git/guile.git
synced 2025-05-17 23:52:24 +02:00
37 lines
1.1 KiB
Scheme
37 lines
1.1 KiB
Scheme
;;;; interp.test --- tests for bugs in the Guile interpreter -*- scheme -*-
|
|
;;;; We'll put a copyright on this as soon as it's big enough to copyright.
|
|
|
|
(pass-if "Internal defines 1"
|
|
(letrec ((foo (lambda (arg)
|
|
(or arg (and (procedure? foo)
|
|
(foo 99))))))
|
|
(define bar (foo #f))
|
|
(foo #f)))
|
|
|
|
(pass-if "Internal defines 2"
|
|
(letrec ((foo 77)
|
|
(bar #f)
|
|
(retfoo (lambda () foo)))
|
|
(define baz (retfoo))
|
|
(retfoo)))
|
|
|
|
;; Test that evaluation of closure bodies works as it should
|
|
|
|
(with-test-prefix "closure bodies"
|
|
(with-test-prefix "eval"
|
|
(pass-if "expansion"
|
|
;; we really want exactly #f back from the closure
|
|
(not ((lambda () (define ret #f) ret))))
|
|
(pass-if "iloc escape"
|
|
(not (let* ((x #f)
|
|
(foo (lambda () x)))
|
|
(foo) ; causes memoization of x
|
|
(foo)))))
|
|
(with-test-prefix "apply"
|
|
(pass-if "expansion"
|
|
(not (catch #t (lambda () (define ret #f) ret) (lambda a #t))))
|
|
(pass-if "iloc escape"
|
|
(not (let* ((x #f)
|
|
(foo (lambda () x)))
|
|
(foo)
|
|
(catch #t foo (lambda a #t)))))))
|