X-Git-Url: http://repo.macrolet.net/gitweb/?a=blobdiff_plain;f=tests%2Fseq.impure.lisp;h=92dff1116cb8df8bf2c0f943f6bd9b840706eb8a;hb=b062a0cffdc3e1706a67c487d2bc5e406c104893;hp=4e55b686da96742662b0434f4a7b88ae3562819a;hpb=c831b2828176641e93a45d3fd643e9f58cd44a3f;p=sbcl.git diff --git a/tests/seq.impure.lisp b/tests/seq.impure.lisp index 4e55b68..92dff11 100644 --- a/tests/seq.impure.lisp +++ b/tests/seq.impure.lisp @@ -261,13 +261,19 @@ (assert-type-error (concatenate '(string 6) "foo" " " "bar")) (assert (string= (concatenate '(string 6) "foo" #(#\b #\a #\r)) "foobar")) (assert-type-error (concatenate '(string 7) "foo" #(#\b #\a #\r)))) - ;; SIMPLE-ARRAY isn't allowed as a vector type specifier + ;; Non-VECTOR ARRAY types aren't allowed as vector type specifiers. (locally - (declare (optimize safety)) + (declare (optimize safety)) (assert-type-error (concatenate 'simple-array "foo" "bar")) (assert-type-error (map 'simple-array #'identity '(1 2 3))) + (assert (equalp #(11 13) + (map '(simple-array fixnum (*)) #'+ '(1 2 3) '(10 11)))) (assert-type-error (coerce '(1 2 3) 'simple-array)) (assert-type-error (merge 'simple-array '(1 3) '(2 4) '<)) + (assert (equalp #(3 2 1) (coerce '(3 2 1) '(vector fixnum)))) + (assert-type-error (map 'array #'identity '(1 2 3))) + (assert-type-error (map '(array fixnum) #'identity '(1 2 3))) + (assert (equalp #(1 2 3) (coerce '(1 2 3) '(vector fixnum)))) ;; but COERCE has an exemption clause: (assert (string= "foo" (coerce "foo" 'simple-array))) ;; ... though not in all cases.