remove (lang elisp), as it won't work with the new evaluator
[bpt/guile.git] / test-suite / tests / elisp.test
index fd028da..f75b34f 100644 (file)
@@ -1,5 +1,5 @@
 ;;;; elisp.test --- tests guile's elisp support     -*- scheme -*-
-;;;; Copyright (C) 2002, 2003, 2006 Free Software Foundation, Inc.
+;;;; Copyright (C) 2002, 2003, 2006, 2009 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
   :use-module (test-suite lib)
   :use-module (ice-9 weak-vector))
 
+;; FIXME: the test suite is good, but it uses the old lang elisp module
+;; instead of the new code. Disable for now.
+'(
+
 (define *old-stack-level* (and=> (memq 'stack (debug-options)) cadr))
 (if *old-stack-level*
     (debug-set! stack (* 2 *old-stack-level*)))
 (set! %load-should-autocompile *old-%load-should-autocompile*)
 (debug-set! stack *old-stack-level*)
 
+)
 ;;; elisp.test ends here