From 2986cb838a3fe91733163fef1113665c667f39d7 Mon Sep 17 00:00:00 2001 From: Attila Lendvai Date: Sat, 2 Sep 2006 13:50:23 +0200 Subject: [PATCH] Rebind a copy of *readtable* before running a test --- src/run.lisp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/run.lisp b/src/run.lisp index fb78175..59e6455 100644 --- a/src/run.lisp +++ b/src/run.lisp @@ -147,7 +147,8 @@ run.")) (abort-test e) (return-from run-it result-list))))) (restart-case - (funcall (test-lambda test)) + (let ((*readtable* (copy-readtable))) + (funcall (test-lambda test))) (retest () :report (lambda (stream) (format stream "~@" test)) -- 1.7.10.4