mirror of
git://git.code.sf.net/p/sbcl/sbcl
synced 2026-09-10 07:26:40 -04:00
Adjust a test.
Calling a special operator by name fails differently on x86-64 and -x86-64.
This commit is contained in:
parent
2dc112f184
commit
33e4b25679
|
|
@ -18,7 +18,8 @@
|
|||
(with-test (:name (:funcall-macro-signals-error))
|
||||
(assert-error (eval '(funcall 'cond nil)) undefined-function))
|
||||
(with-test (:name (:funcall-special-op-signals-error))
|
||||
(assert-error (eval '(funcall 'quote nil)) sb-int:special-form-function))
|
||||
(assert-error (eval '(funcall 'quote nil)) #+x86-64 sb-int:special-form-function
|
||||
#-x86-64 undefined-function))
|
||||
|
||||
;;; ROOM should run without signalling an error. (bug 247)
|
||||
(let ((*standard-output* (make-broadcast-stream)))
|
||||
|
|
|
|||
Loading…
Reference in a new issue