projects
/
sbcl.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
a3c77b1
)
fix bogus test in arith.pure.lisp
author
Nikodemus Siivola
<nikodemus@random-state.net>
Sun, 26 Jun 2011 17:40:22 +0000
(20:40 +0300)
committer
Nikodemus Siivola
<nikodemus@random-state.net>
Sun, 26 Jun 2011 17:40:22 +0000
(20:40 +0300)
Didn't actually call the slow-path at all. Thanks to Lutz Euler for the
heads-up.
tests/arith.pure.lisp
patch
|
blob
|
history
diff --git
a/tests/arith.pure.lisp
b/tests/arith.pure.lisp
index
5a6ca2f
..
dde318b
100644
(file)
--- a/
tests/arith.pure.lisp
+++ b/
tests/arith.pure.lisp
@@
-399,7
+399,7
@@
(apply fast call-args)
(division-by-zero () :div0)))
(slow-result (handler-case
- (apply fast call-args)
+ (apply slow call-args)
(division-by-zero () :div0))))
(if (eql fast-result slow-result)
(print (list :ok `(,op ,@args) :=> fast-result))