USING: alien alien.data alien.syntax classes.struct kernel sequences specialized-arrays specialized-arrays.private tools.test compiler.units vocabs system ; QUALIFIED-WITH: alien.c-types c IN: alien.data.tests [ -1 ] [ -1 c:char c:char deref ] unit-test [ -1 ] [ -1 c:short c:short deref ] unit-test [ -1 ] [ -1 c:int c:int deref ] unit-test ! I don't care if this throws an error or works, but at least ! it should be consistent between platforms [ -1 ] [ -1.0 c:int c:int deref ] unit-test [ -1 ] [ -1.0 c:long c:long deref ] unit-test [ -1 ] [ -1.0 c:longlong c:longlong deref ] unit-test [ 1 ] [ 1.0 c:uint c:uint deref ] unit-test [ 1 ] [ 1.0 c:ulong c:ulong deref ] unit-test [ 1 ] [ 1.0 c:ulonglong c:ulonglong deref ] unit-test [ 0 B{ 1 2 3 4 } c:void* ] must-fail os windows? cpu x86.64? and [ [ -2147467259 ] [ 2147500037 c:long c:long deref ] unit-test ] when STRUCT: foo { a c:int } { b c:void* } { c c:bool } ; SPECIALIZED-ARRAY: foo [ t ] [ 0 binary-zero? ] unit-test [ f ] [ 1 binary-zero? ] unit-test [ f ] [ -1 binary-zero? ] unit-test [ t ] [ 0.0 binary-zero? ] unit-test [ f ] [ 1.0 binary-zero? ] unit-test [ f ] [ -0.0 binary-zero? ] unit-test [ t ] [ C{ 0.0 0.0 } binary-zero? ] unit-test [ f ] [ C{ 1.0 0.0 } binary-zero? ] unit-test [ f ] [ C{ -0.0 0.0 } binary-zero? ] unit-test [ f ] [ C{ 0.0 1.0 } binary-zero? ] unit-test [ f ] [ C{ 0.0 -0.0 } binary-zero? ] unit-test [ t ] [ f binary-zero? ] unit-test [ t ] [ 0 binary-zero? ] unit-test [ f ] [ 1 binary-zero? ] unit-test [ f ] [ B{ } binary-zero? ] unit-test [ t ] [ S{ foo f 0 f f } binary-zero? ] unit-test [ f ] [ S{ foo f 1 f f } binary-zero? ] unit-test [ f ] [ S{ foo f 0 ALIEN: 8 f } binary-zero? ] unit-test [ f ] [ S{ foo f 0 f t } binary-zero? ] unit-test [ t t f ] [ foo-array{ S{ foo f 0 f f } S{ foo f 0 f f } S{ foo f 1 f f } } [ first binary-zero? ] [ second binary-zero? ] [ third binary-zero? ] tri ] unit-test [ ] [ [ foo specialized-array-vocab forget-vocab ] with-compilation-unit ] unit-test