]> gitweb.factorcode.org Git - factor.git/blobdiff - basis/specialized-arrays/specialized-arrays-tests.factor
Fix conflicts
[factor.git] / basis / specialized-arrays / specialized-arrays-tests.factor
index ad7315303386634f6a7ed06326fad8470aa86b24..9ca356506e66df7399f7c49ac095e309b680b8ff 100755 (executable)
@@ -28,7 +28,11 @@ specialized-arrays.char specialized-arrays.uint arrays combinators ;
     int-array{ 3 1 3 3 7 } malloc-byte-array 5 <direct-int-array> >array
 ] unit-test
 
+[ f ] [ float-array{ 4 3 2 1 } dup clone [ underlying>> ] bi@ eq? ] unit-test
+
+[ f ] [ [ float-array{ 4 3 2 1 } dup clone [ underlying>> ] bi@ eq? ] compile-call ] unit-test
+
 [ ushort-array{ 0 0 0 } ] [
     3 ALIEN: 123 100 <direct-ushort-array> new-sequence
     dup [ drop 0 ] change-each
-] unit-test
\ No newline at end of file
+] unit-test