blob: 7497094a8e13f30220dba5550f90e90a249509da (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
|
;;;; interp.test --- tests for bugs in the Guile interpreter -*- scheme -*-
;;;;
;;;; Copyright (C) 1999, 2001, 2006 Free Software Foundation, Inc.
;;;;
;;;; This library is free software; you can redistribute it and/or
;;;; modify it under the terms of the GNU Lesser General Public
;;;; License as published by the Free Software Foundation; either
;;;; version 3 of the License, or (at your option) any later version.
;;;;
;;;; This library is distributed in the hope that it will be useful,
;;;; but WITHOUT ANY WARRANTY; without even the implied warranty of
;;;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
;;;; Lesser General Public License for more details.
;;;;
;;;; You should have received a copy of the GNU Lesser General Public
;;;; License along with this library; if not, write to the Free Software
;;;; Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
(define-module (test-suite test-interp)
#:use-module (test-suite lib))
(pass-if "Internal defines 1"
(letrec ((foo (lambda (arg)
(or arg (and (procedure? foo)
(foo 99))))))
(define bar (foo #f))
(= (foo #f) 99)))
(pass-if "Internal defines 2"
(letrec ((foo 77)
(bar #f)
(retfoo (lambda () foo)))
(define baz (retfoo))
(= (retfoo) 77)))
;; 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)))))))
|