summaryrefslogtreecommitdiff
path: root/test-suite/tests/interp.test
diff options
context:
space:
mode:
Diffstat (limited to 'test-suite/tests/interp.test')
-rw-r--r--test-suite/tests/interp.test53
1 files changed, 0 insertions, 53 deletions
diff --git a/test-suite/tests/interp.test b/test-suite/tests/interp.test
deleted file mode 100644
index fb6e4d6f0..000000000
--- a/test-suite/tests/interp.test
+++ /dev/null
@@ -1,53 +0,0 @@
-;;;; interp.test --- tests for bugs in the Guile interpreter -*- scheme -*-
-;;;;
-;;;; Copyright (C) 1999 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
-;;;; the Free Software Foundation; either version 2, or (at your option)
-;;;; any later version.
-;;;;
-;;;; This program 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 General Public License for more details.
-;;;;
-;;;; You should have received a copy of the GNU General Public License
-;;;; along with this software; see the file COPYING. If not, write to
-;;;; the Free Software Foundation, Inc., 59 Temple Place, Suite 330,
-;;;; Boston, MA 02111-1307 USA
-
-(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)))))))