projects
/
sbcl.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
625c949
)
minor fix to alien.impure.lisp test
author
Christophe Rhodes
<csr21@cantab.net>
Thu, 5 Apr 2012 15:54:56 +0000
(16:54 +0100)
committer
Christophe Rhodes
<csr21@cantab.net>
Fri, 13 Apr 2012 15:17:13 +0000
(16:17 +0100)
Don't signal a compiler-note with ERROR to indicate failure; it bypasses
the handlers and aborts the entire file. Use (error "bad note: ~A" note)
instead
tests/alien.impure.lisp
patch
|
blob
|
history
diff --git
a/tests/alien.impure.lisp
b/tests/alien.impure.lisp
index
cf708ef
..
fe5c18e
100644
(file)
--- a/
tests/alien.impure.lisp
+++ b/
tests/alien.impure.lisp
@@
-304,7
+304,7
@@
"execv"))
(values (alien-funcall sys-execv1 program argv)))))
(compiler-note (n)
- (error n))))
+ (error "bad note: ~A" n))))
(with-test (:name :bug-721087)
(assert (typep nil '(alien c-string)))