From 85d3a8a63dbac7aa8aa5a70b0719be2277355b87 Mon Sep 17 00:00:00 2001 From: Andy Wingo Date: Sat, 25 Sep 2010 12:12:45 +0200 Subject: [PATCH] fix up options.test * test-suite/tests/options.test (test-suite): Fix up for removal of maxdepth debug option. --- test-suite/tests/options.test | 15 +++++++-------- 1 file changed, 7 insertions(+), 8 deletions(-) diff --git a/test-suite/tests/options.test b/test-suite/tests/options.test index a795109ce..a5886e21a 100644 --- a/test-suite/tests/options.test +++ b/test-suite/tests/options.test @@ -1,6 +1,6 @@ ;;;; options.test --- test suite for options interface -*- scheme -*- ;;;; -;;;; Copyright (C) 2002, 2006 Free Software Foundation, Inc. +;;;; Copyright (C) 2002, 2006, 2010 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 @@ -16,14 +16,13 @@ ;;;; License along with this library; if not, write to the Free Software ;;;; Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA -(use-modules (test-suite lib)) +(define-module (test-suite options-test) + #:use-module (test-suite lib)) (with-test-prefix "options" (pass-if "setting an option doesn't reset other options" - (let () - (debug-enable 'backwards) - (debug-set! maxdepth 555) - (if (memq 'backwards (debug-options)) #t #f))) - - ) + (begin + (debug-enable 'backwards) + (debug-set! depth 555) + (->bool (memq 'backwards (debug-options))))))