projects
/
fiveam.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
5ff307e
)
Rebind a copy of *readtable* before running a test
author
Attila Lendvai
<attila.lendvai@gmail.com>
Sat, 2 Sep 2006 11:50:23 +0000
(13:50 +0200)
committer
attila.lendvai
<attila.lendvai@gmail.com>
Sat, 2 Sep 2006 11:50:23 +0000
(13:50 +0200)
src/run.lisp
patch
|
blob
|
history
diff --git
a/src/run.lisp
b/src/run.lisp
index
fb78175
..
59e6455
100644
(file)
--- 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 "~@<Rerun the test ~S~@:>" test))