deprecate generalized vectors in favor of arrays
[bpt/guile.git] / test-suite / tests / arrays.test
1 ;;;; unif.test --- tests guile's uniform arrays -*- scheme -*-
2 ;;;;
3 ;;;; Copyright 2004, 2006, 2009, 2010, 2011, 2012, 2013 Free Software Foundation, Inc.
4 ;;;;
5 ;;;; This library is free software; you can redistribute it and/or
6 ;;;; modify it under the terms of the GNU Lesser General Public
7 ;;;; License as published by the Free Software Foundation; either
8 ;;;; version 3 of the License, or (at your option) any later version.
9 ;;;;
10 ;;;; This library is distributed in the hope that it will be useful,
11 ;;;; but WITHOUT ANY WARRANTY; without even the implied warranty of
12 ;;;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
13 ;;;; Lesser General Public License for more details.
14 ;;;;
15 ;;;; You should have received a copy of the GNU Lesser General Public
16 ;;;; License along with this library; if not, write to the Free Software
17 ;;;; Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
18
19 (define-module (test-suite test-arrays)
20 #:use-module ((system base compile) #:select (compile))
21 #:use-module (test-suite lib)
22 #:use-module (srfi srfi-4)
23 #:use-module (srfi srfi-4 gnu))
24
25 ;;;
26 ;;; array?
27 ;;;
28
29 (define exception:wrong-num-indices
30 (cons 'misc-error "^wrong number of indices.*"))
31
32 (define exception:length-non-negative
33 (cons 'read-error ".*array length must be non-negative.*"))
34
35
36 (with-test-prefix "sanity"
37 ;; At the current time of writing, bignums have a tc7 that is one bit
38 ;; away from strings. It used to be that the vector implementation
39 ;; registered for strings had the TYP7S mask, not the TYP7 mask,
40 ;; making the system think that bignums were vectors. Doh!
41 (pass-if (not (uniform-vector? 12345678901234567890123456789))))
42
43 (with-test-prefix "array?"
44
45 (let ((bool (make-typed-array 'b #t '(5 6)))
46 (char (make-typed-array 'a #\a '(5 6)))
47 (byte (make-typed-array 'u8 0 '(5 6)))
48 (short (make-typed-array 's16 0 '(5 6)))
49 (ulong (make-typed-array 'u32 0 '(5 6)))
50 (long (make-typed-array 's32 0 '(5 6)))
51 (longlong (make-typed-array 's64 0 '(5 6)))
52 (float (make-typed-array 'f32 0 '(5 6)))
53 (double (make-typed-array 'f64 0 '(5 6)))
54 (complex (make-typed-array 'c64 0 '(5 6)))
55 (scm (make-typed-array #t 0 '(5 6))))
56
57 (with-test-prefix "is bool"
58 (pass-if (eq? #t (typed-array? bool 'b)))
59 (pass-if (eq? #f (typed-array? char 'b)))
60 (pass-if (eq? #f (typed-array? byte 'b)))
61 (pass-if (eq? #f (typed-array? short 'b)))
62 (pass-if (eq? #f (typed-array? ulong 'b)))
63 (pass-if (eq? #f (typed-array? long 'b)))
64 (pass-if (eq? #f (typed-array? longlong 'b)))
65 (pass-if (eq? #f (typed-array? float 'b)))
66 (pass-if (eq? #f (typed-array? double 'b)))
67 (pass-if (eq? #f (typed-array? complex 'b)))
68 (pass-if (eq? #f (typed-array? scm 'b))))
69
70 (with-test-prefix "is char"
71 (pass-if (eq? #f (typed-array? bool 'a)))
72 (pass-if (eq? #t (typed-array? char 'a)))
73 (pass-if (eq? #f (typed-array? byte 'a)))
74 (pass-if (eq? #f (typed-array? short 'a)))
75 (pass-if (eq? #f (typed-array? ulong 'a)))
76 (pass-if (eq? #f (typed-array? long 'a)))
77 (pass-if (eq? #f (typed-array? longlong 'a)))
78 (pass-if (eq? #f (typed-array? float 'a)))
79 (pass-if (eq? #f (typed-array? double 'a)))
80 (pass-if (eq? #f (typed-array? complex 'a)))
81 (pass-if (eq? #f (typed-array? scm 'a))))
82
83 (with-test-prefix "is byte"
84 (pass-if (eq? #f (typed-array? bool 'u8)))
85 (pass-if (eq? #f (typed-array? char 'u8)))
86 (pass-if (eq? #t (typed-array? byte 'u8)))
87 (pass-if (eq? #f (typed-array? short 'u8)))
88 (pass-if (eq? #f (typed-array? ulong 'u8)))
89 (pass-if (eq? #f (typed-array? long 'u8)))
90 (pass-if (eq? #f (typed-array? longlong 'u8)))
91 (pass-if (eq? #f (typed-array? float 'u8)))
92 (pass-if (eq? #f (typed-array? double 'u8)))
93 (pass-if (eq? #f (typed-array? complex 'u8)))
94 (pass-if (eq? #f (typed-array? scm 'u8))))
95
96 (with-test-prefix "is short"
97 (pass-if (eq? #f (typed-array? bool 's16)))
98 (pass-if (eq? #f (typed-array? char 's16)))
99 (pass-if (eq? #f (typed-array? byte 's16)))
100 (pass-if (eq? #t (typed-array? short 's16)))
101 (pass-if (eq? #f (typed-array? ulong 's16)))
102 (pass-if (eq? #f (typed-array? long 's16)))
103 (pass-if (eq? #f (typed-array? longlong 's16)))
104 (pass-if (eq? #f (typed-array? float 's16)))
105 (pass-if (eq? #f (typed-array? double 's16)))
106 (pass-if (eq? #f (typed-array? complex 's16)))
107 (pass-if (eq? #f (typed-array? scm 's16))))
108
109 (with-test-prefix "is ulong"
110 (pass-if (eq? #f (typed-array? bool 'u32)))
111 (pass-if (eq? #f (typed-array? char 'u32)))
112 (pass-if (eq? #f (typed-array? byte 'u32)))
113 (pass-if (eq? #f (typed-array? short 'u32)))
114 (pass-if (eq? #t (typed-array? ulong 'u32)))
115 (pass-if (eq? #f (typed-array? long 'u32)))
116 (pass-if (eq? #f (typed-array? longlong 'u32)))
117 (pass-if (eq? #f (typed-array? float 'u32)))
118 (pass-if (eq? #f (typed-array? double 'u32)))
119 (pass-if (eq? #f (typed-array? complex 'u32)))
120 (pass-if (eq? #f (typed-array? scm 'u32))))
121
122 (with-test-prefix "is long"
123 (pass-if (eq? #f (typed-array? bool 's32)))
124 (pass-if (eq? #f (typed-array? char 's32)))
125 (pass-if (eq? #f (typed-array? byte 's32)))
126 (pass-if (eq? #f (typed-array? short 's32)))
127 (pass-if (eq? #f (typed-array? ulong 's32)))
128 (pass-if (eq? #t (typed-array? long 's32)))
129 (pass-if (eq? #f (typed-array? longlong 's32)))
130 (pass-if (eq? #f (typed-array? float 's32)))
131 (pass-if (eq? #f (typed-array? double 's32)))
132 (pass-if (eq? #f (typed-array? complex 's32)))
133 (pass-if (eq? #f (typed-array? scm 's32))))
134
135 (with-test-prefix "is long long"
136 (pass-if (eq? #f (typed-array? bool 's64)))
137 (pass-if (eq? #f (typed-array? char 's64)))
138 (pass-if (eq? #f (typed-array? byte 's64)))
139 (pass-if (eq? #f (typed-array? short 's64)))
140 (pass-if (eq? #f (typed-array? ulong 's64)))
141 (pass-if (eq? #f (typed-array? long 's64)))
142 (pass-if (eq? #t (typed-array? longlong 's64)))
143 (pass-if (eq? #f (typed-array? float 's64)))
144 (pass-if (eq? #f (typed-array? double 's64)))
145 (pass-if (eq? #f (typed-array? complex 's64)))
146 (pass-if (eq? #f (typed-array? scm 's64))))
147
148 (with-test-prefix "is float"
149 (pass-if (eq? #f (typed-array? bool 'f32)))
150 (pass-if (eq? #f (typed-array? char 'f32)))
151 (pass-if (eq? #f (typed-array? byte 'f32)))
152 (pass-if (eq? #f (typed-array? short 'f32)))
153 (pass-if (eq? #f (typed-array? ulong 'f32)))
154 (pass-if (eq? #f (typed-array? long 'f32)))
155 (pass-if (eq? #f (typed-array? longlong 'f32)))
156 (pass-if (eq? #t (typed-array? float 'f32)))
157 (pass-if (eq? #f (typed-array? double 'f32)))
158 (pass-if (eq? #f (typed-array? complex 'f32)))
159 (pass-if (eq? #f (typed-array? scm 'f32))))
160
161 (with-test-prefix "is double"
162 (pass-if (eq? #f (typed-array? bool 'f64)))
163 (pass-if (eq? #f (typed-array? char 'f64)))
164 (pass-if (eq? #f (typed-array? byte 'f64)))
165 (pass-if (eq? #f (typed-array? short 'f64)))
166 (pass-if (eq? #f (typed-array? ulong 'f64)))
167 (pass-if (eq? #f (typed-array? long 'f64)))
168 (pass-if (eq? #f (typed-array? longlong 'f64)))
169 (pass-if (eq? #f (typed-array? float 'f64)))
170 (pass-if (eq? #t (typed-array? double 'f64)))
171 (pass-if (eq? #f (typed-array? complex 'f64)))
172 (pass-if (eq? #f (typed-array? scm 'f64))))
173
174 (with-test-prefix "is complex"
175 (pass-if (eq? #f (typed-array? bool 'c64)))
176 (pass-if (eq? #f (typed-array? char 'c64)))
177 (pass-if (eq? #f (typed-array? byte 'c64)))
178 (pass-if (eq? #f (typed-array? short 'c64)))
179 (pass-if (eq? #f (typed-array? ulong 'c64)))
180 (pass-if (eq? #f (typed-array? long 'c64)))
181 (pass-if (eq? #f (typed-array? longlong 'c64)))
182 (pass-if (eq? #f (typed-array? float 'c64)))
183 (pass-if (eq? #f (typed-array? double 'c64)))
184 (pass-if (eq? #t (typed-array? complex 'c64)))
185 (pass-if (eq? #f (typed-array? scm 'c64))))
186
187 (with-test-prefix "is scm"
188 (pass-if (eq? #f (typed-array? bool #t)))
189 (pass-if (eq? #f (typed-array? char #t)))
190 (pass-if (eq? #f (typed-array? byte #t)))
191 (pass-if (eq? #f (typed-array? short #t)))
192 (pass-if (eq? #f (typed-array? ulong #t)))
193 (pass-if (eq? #f (typed-array? long #t)))
194 (pass-if (eq? #f (typed-array? longlong #t)))
195 (pass-if (eq? #f (typed-array? float #t)))
196 (pass-if (eq? #f (typed-array? double #t)))
197 (pass-if (eq? #f (typed-array? complex #t)))
198 (pass-if (eq? #t (typed-array? scm #t))))))
199
200 ;;;
201 ;;; array-equal?
202 ;;;
203
204 (with-test-prefix "array-equal?"
205
206 (pass-if "#s16(...)"
207 (array-equal? #s16(1 2 3) #s16(1 2 3))))
208
209 ;;;
210 ;;; array->list
211 ;;;
212
213 (with-test-prefix "array->list"
214 (pass-if-equal '(1 2 3) (array->list #s16(1 2 3)))
215 (pass-if-equal '(1 2 3) (array->list #(1 2 3)))
216 (pass-if-equal '((1 2) (3 4) (5 6)) (array->list #2((1 2) (3 4) (5 6))))
217 (pass-if-equal '() (array->list #()))
218
219 (pass-if-equal "http://bugs.gnu.org/12465 - ok"
220 '(3 4)
221 (let* ((a #2((1 2) (3 4)))
222 (b (make-shared-array a (lambda (j) (list 1 j)) 2)))
223 (array->list b)))
224 (pass-if-equal "http://bugs.gnu.org/12465 - bad"
225 '(2 4)
226 (let* ((a #2((1 2) (3 4)))
227 (b (make-shared-array a (lambda (i) (list i 1)) 2)))
228 (array->list b))))
229
230 ;;;
231 ;;; array-fill!
232 ;;;
233
234 (with-test-prefix "array-fill!"
235
236 (with-test-prefix "bool"
237 (let ((a (make-bitvector 1 #t)))
238 (pass-if "#f" (array-fill! a #f) #t)
239 (pass-if "#t" (array-fill! a #t) #t)))
240
241 (with-test-prefix "char"
242 (let ((a (make-string 1 #\a)))
243 (pass-if "x" (array-fill! a #\x) #t)))
244
245 (with-test-prefix "byte"
246 (let ((a (make-s8vector 1 0)))
247 (pass-if "0" (array-fill! a 0) #t)
248 (pass-if "127" (array-fill! a 127) #t)
249 (pass-if "-128" (array-fill! a -128) #t)
250 (pass-if-exception "128" exception:out-of-range
251 (array-fill! a 128))
252 (pass-if-exception "-129" exception:out-of-range
253 (array-fill! a -129))
254 (pass-if-exception "symbol" exception:wrong-type-arg
255 (array-fill! a 'symbol))))
256
257 (with-test-prefix "short"
258 (let ((a (make-s16vector 1 0)))
259 (pass-if "0" (array-fill! a 0) #t)
260 (pass-if "123" (array-fill! a 123) #t)
261 (pass-if "-123" (array-fill! a -123) #t)))
262
263 (with-test-prefix "ulong"
264 (let ((a (make-u32vector 1 1)))
265 (pass-if "0" (array-fill! a 0) #t)
266 (pass-if "123" (array-fill! a 123) #t)
267 (pass-if-exception "-123" exception:out-of-range
268 (array-fill! a -123) #t)))
269
270 (with-test-prefix "long"
271 (let ((a (make-s32vector 1 -1)))
272 (pass-if "0" (array-fill! a 0) #t)
273 (pass-if "123" (array-fill! a 123) #t)
274 (pass-if "-123" (array-fill! a -123) #t)))
275
276 (with-test-prefix "float"
277 (let ((a (make-f32vector 1 1.0)))
278 (pass-if "0.0" (array-fill! a 0) #t)
279 (pass-if "123.0" (array-fill! a 123.0) #t)
280 (pass-if "-123.0" (array-fill! a -123.0) #t)
281 (pass-if "0" (array-fill! a 0) #t)
282 (pass-if "123" (array-fill! a 123) #t)
283 (pass-if "-123" (array-fill! a -123) #t)
284 (pass-if "5/8" (array-fill! a 5/8) #t)))
285
286 (with-test-prefix "double"
287 (let ((a (make-f64vector 1 1/3)))
288 (pass-if "0.0" (array-fill! a 0) #t)
289 (pass-if "123.0" (array-fill! a 123.0) #t)
290 (pass-if "-123.0" (array-fill! a -123.0) #t)
291 (pass-if "0" (array-fill! a 0) #t)
292 (pass-if "123" (array-fill! a 123) #t)
293 (pass-if "-123" (array-fill! a -123) #t)
294 (pass-if "5/8" (array-fill! a 5/8) #t))))
295
296 ;;;
297 ;;; array-in-bounds?
298 ;;;
299
300 (with-test-prefix "array-in-bounds?"
301
302 (pass-if (let ((a (make-array #f '(425 425))))
303 (eq? #f (array-in-bounds? a 0)))))
304
305 ;;;
306 ;;; array-prototype
307 ;;;
308
309 (with-test-prefix "array-type"
310
311 (with-test-prefix "on make-foo-vector"
312
313 (pass-if "bool"
314 (eq? 'b (array-type (make-bitvector 1))))
315
316 (pass-if "char"
317 (eq? 'a (array-type (make-string 1))))
318
319 (pass-if "byte"
320 (eq? 'u8 (array-type (make-u8vector 1))))
321
322 (pass-if "short"
323 (eq? 's16 (array-type (make-s16vector 1))))
324
325 (pass-if "ulong"
326 (eq? 'u32 (array-type (make-u32vector 1))))
327
328 (pass-if "long"
329 (eq? 's32 (array-type (make-s32vector 1))))
330
331 (pass-if "long long"
332 (eq? 's64 (array-type (make-s64vector 1))))
333
334 (pass-if "float"
335 (eq? 'f32 (array-type (make-f32vector 1))))
336
337 (pass-if "double"
338 (eq? 'f64 (array-type (make-f64vector 1))))
339
340 (pass-if "complex"
341 (eq? 'c64 (array-type (make-c64vector 1))))
342
343 (pass-if "scm"
344 (eq? #t (array-type (make-vector 1)))))
345
346 (with-test-prefix "on make-typed-array"
347
348 (let ((types '(b a u8 s8 u16 s16 u32 s32 u64 u64 f32 f64 c32 c64)))
349 (for-each (lambda (type)
350 (pass-if (symbol->string type)
351 (eq? type
352 (array-type (make-typed-array type
353 *unspecified*
354 '(5 6))))))
355 types))))
356
357 ;;;
358 ;;; array-set!
359 ;;;
360
361 (with-test-prefix "array-set!"
362
363 (with-test-prefix "bitvector"
364
365 ;; in Guile 1.8.0 a bug in bitvector_set() caused a segv in array-set!
366 ;; on a bitvector like the following
367 (let ((a (make-bitvector 1)))
368 (pass-if "one elem set #t"
369 (begin
370 (array-set! a #t 0)
371 (eq? #t (array-ref a 0))))
372 (pass-if "one elem set #f"
373 (begin
374 (array-set! a #f 0)
375 (eq? #f (array-ref a 0))))))
376
377 (with-test-prefix "byte"
378
379 (let ((a (make-s8vector 1)))
380
381 (pass-if "-128"
382 (begin (array-set! a -128 0) #t))
383 (pass-if "0"
384 (begin (array-set! a 0 0) #t))
385 (pass-if "127"
386 (begin (array-set! a 127 0) #t))
387 (pass-if-exception "-129" exception:out-of-range
388 (begin (array-set! a -129 0) #t))
389 (pass-if-exception "128" exception:out-of-range
390 (begin (array-set! a 128 0) #t))))
391
392 (with-test-prefix "short"
393
394 (let ((a (make-s16vector 1)))
395 ;; true if n can be array-set! into a
396 (define (fits? n)
397 (false-if-exception (begin (array-set! a n 0) #t)))
398
399 (with-test-prefix "store/fetch"
400 ;; Check array-ref gives back what was put with array-set!.
401 ;; In Guile 1.6.4 and earlier, array-set! only demanded an inum and
402 ;; would silently truncate to a short.
403
404 (do ((n 1 (1+ (* 2 n)))) ;; n=2^k-1
405 ((not (fits? n)))
406 (array-set! a n 0)
407 (pass-if n
408 (= n (array-ref a 0))))
409
410 (do ((n -1 (* 2 n))) ;; -n=2^k
411 ((not (fits? n)))
412 (array-set! a n 0)
413 (pass-if n
414 (= n (array-ref a 0))))))))
415
416 ;;;
417 ;;; array-set!
418 ;;;
419
420 (with-test-prefix "array-set!"
421
422 (with-test-prefix "one dim"
423 (let ((a (make-array #f '(3 5))))
424 (pass-if "start"
425 (array-set! a 'y 3)
426 #t)
427 (pass-if "end"
428 (array-set! a 'y 5)
429 #t)
430 (pass-if-exception "start-1" exception:out-of-range
431 (array-set! a 'y 2))
432 (pass-if-exception "end+1" exception:out-of-range
433 (array-set! a 'y 6))
434 (pass-if-exception "two indexes" exception:wrong-num-indices
435 (array-set! a 'y 6 7))))
436
437 (with-test-prefix "two dim"
438 (let ((a (make-array #f '(3 5) '(7 9))))
439 (pass-if "start"
440 (array-set! a 'y 3 7)
441 #t)
442 (pass-if "end"
443 (array-set! a 'y 5 9)
444 #t)
445 (pass-if-exception "start i-1" exception:out-of-range
446 (array-set! a 'y 2 7))
447 (pass-if-exception "end i+1" exception:out-of-range
448 (array-set! a 'y 6 9))
449 (pass-if-exception "one index" exception:wrong-num-indices
450 (array-set! a 'y 4))
451 (pass-if-exception "three indexes" exception:wrong-num-indices
452 (array-set! a 'y 4 8 0)))))
453
454 ;;;
455 ;;; make-shared-array
456 ;;;
457
458 (define exception:mapping-out-of-range
459 (cons 'misc-error "^mapping out of range")) ;; per scm_make_shared_array
460
461 (with-test-prefix "make-shared-array"
462
463 ;; this failed in guile 1.8.0
464 (pass-if "vector unchanged"
465 (let* ((a (make-array #f '(0 7)))
466 (s (make-shared-array a list '(0 7))))
467 (array-equal? a s)))
468
469 (pass-if-exception "vector, high too big" exception:mapping-out-of-range
470 (let* ((a (make-array #f '(0 7))))
471 (make-shared-array a list '(0 8))))
472
473 (pass-if-exception "vector, low too big" exception:out-of-range
474 (let* ((a (make-array #f '(0 7))))
475 (make-shared-array a list '(-1 7))))
476
477 (pass-if "truncate columns"
478 (array-equal? (make-shared-array #2((a b c) (d e f) (g h i)) list 3 2)
479 #2((a b) (d e) (g h))))
480
481 (pass-if "pick one column"
482 (array-equal? (make-shared-array #2((a b c) (d e f) (g h i))
483 (lambda (i) (list i 2))
484 '(0 2))
485 #(c f i)))
486
487 (pass-if "diagonal"
488 (array-equal? (make-shared-array #2((a b c) (d e f) (g h i))
489 (lambda (i) (list i i))
490 '(0 2))
491 #(a e i)))
492
493 ;; this failed in guile 1.8.0
494 (pass-if "2 dims from 1 dim"
495 (array-equal? (make-shared-array #1(a b c d e f g h i j k l)
496 (lambda (i j) (list (+ (* i 3) j)))
497 4 3)
498 #2((a b c) (d e f) (g h i) (j k l))))
499
500 (pass-if "reverse columns"
501 (array-equal? (make-shared-array #2((a b c) (d e f) (g h i))
502 (lambda (i j) (list i (- 2 j)))
503 3 3)
504 #2((c b a) (f e d) (i h g))))
505
506 (pass-if "fixed offset, 0 based becomes 1 based"
507 (let* ((x #2((a b c) (d e f) (g h i)))
508 (y (make-shared-array x
509 (lambda (i j) (list (1- i) (1- j)))
510 '(1 3) '(1 3))))
511 (and (eq? (array-ref x 0 0) 'a)
512 (eq? (array-ref y 1 1) 'a))))
513
514 ;; this failed in guile 1.8.0
515 (pass-if "stride every third element"
516 (array-equal? (make-shared-array #1(a b c d e f g h i j k l)
517 (lambda (i) (list (* i 3)))
518 4)
519 #1(a d g j)))
520
521 (pass-if "shared of shared"
522 (let* ((a #2((1 2 3) (4 5 6) (7 8 9)))
523 (s1 (make-shared-array a (lambda (i) (list i 1)) 3))
524 (s2 (make-shared-array s1 list '(1 2))))
525 (and (eqv? 5 (array-ref s2 1))
526 (eqv? 8 (array-ref s2 2))))))
527
528 ;;;
529 ;;; uniform-vector-ref
530 ;;;
531
532 (with-test-prefix "uniform-vector-ref"
533
534 (with-test-prefix "byte"
535
536 (let ((a (make-s8vector 1)))
537
538 (pass-if "0"
539 (begin
540 (array-set! a 0 0)
541 (= 0 (uniform-vector-ref a 0))))
542 (pass-if "127"
543 (begin
544 (array-set! a 127 0)
545 (= 127 (uniform-vector-ref a 0))))
546 (pass-if "-128"
547 (begin
548 (array-set! a -128 0)
549 (= -128 (uniform-vector-ref a 0)))))))
550
551 ;;;
552 ;;; syntax
553 ;;;
554
555 (with-test-prefix "syntax"
556
557 (pass-if "rank and lower bounds"
558 ;; uniform u32 array of rank 2 with index ranges 2..3 and 7..8.
559 (let ((a '#2u32@2@7((1 2) (3 4))))
560 (and (array? a)
561 (typed-array? a 'u32)
562 (= (array-rank a) 2)
563 (let loop ((bounds '((2 7) (2 8) (3 7) (3 8)))
564 (result #t))
565 (if (null? bounds)
566 result
567 (and result
568 (loop (cdr bounds)
569 (apply array-in-bounds? a (car bounds)))))))))
570
571 (pass-if "negative lower bound"
572 (let ((a '#1@-3(a b)))
573 (and (array? a)
574 (= (array-rank a) 1)
575 (array-in-bounds? a -3) (array-in-bounds? a -2)
576 (eq? 'a (array-ref a -3))
577 (eq? 'b (array-ref a -2)))))
578
579 (pass-if-exception "negative length" exception:length-non-negative
580 (with-input-from-string "'#1:-3(#t #t)" read))
581
582 (pass-if "bitvector is self-evaluating"
583 (equal? (compile (bitvector)) (bitvector))))
584
585 ;;;
586 ;;; equal? with vector and one-dimensional array
587 ;;;
588
589 (with-test-prefix "equal?"
590 (pass-if "array and non-array"
591 (not (equal? #2f64((0 1) (2 3)) 100)))
592
593 (pass-if "empty vectors of different types"
594 (not (equal? #s32() #f64())))
595
596 (pass-if "empty arrays of different types"
597 (not (equal? #2s32() #2f64())))
598
599 (pass-if "empty arrays of the same type"
600 (equal? #s32() #s32()))
601
602 (pass-if "identical uniform vectors of the same type"
603 (equal? #s32(1) #s32(1)))
604
605 (pass-if "nonidentical uniform vectors of the same type"
606 (not (equal? #s32(1) #s32(-1))))
607
608 (pass-if "identical uniform vectors of different types"
609 (not (equal? #s32(1) #s64(1))))
610
611 (pass-if "nonidentical uniform vectors of different types"
612 (not (equal? #s32(1) #s64(-1))))
613
614 (pass-if "vector and one-dimensional array"
615 (equal? (make-shared-array #2((a b c) (d e f) (g h i))
616 (lambda (i) (list i i))
617 '(0 2))
618 #(a e i))))
619
620 ;;;
621 ;;; slices as generalized vectors
622 ;;;
623
624 (let ((array #2u32((0 1) (2 3))))
625 (define (array-row a i)
626 (make-shared-array a (lambda (j) (list i j))
627 (cadr (array-dimensions a))))
628 (with-test-prefix "generalized vector slices"
629 (pass-if (equal? (array-row array 1)
630 #u32(2 3)))
631 (pass-if (equal? (array-ref (array-row array 1) 0)
632 2))))