Check that the FlVector type is exported. Currently this test fails.

svn: r18557
This commit is contained in:
Noel Welsh 2010-03-17 15:26:30 +00:00
parent 39a1489403
commit 5f6aeb364f

View File

@ -17,6 +17,9 @@
#t
(error (format "Check (~a ~a ~a) failed" f a b))))
;; Check the FlVector type is exported
(define: v : FlVector (flvector 1. 2. 3.))
(check equal? (flvector 1. 2. 3. 4.) (flvector 1. 2. 3. 4.))
(check equal? (flvector? (flvector 1. 2. 3.)) #t)
(check equal? (make-flvector 3 3.0) (flvector 3. 3. 3.))