factor/basis/struct-arrays/struct-arrays-tests.factor

41 lines
979 B
Factor
Raw Normal View History

2008-12-03 10:41:48 -05:00
IN: struct-arrays.tests
2009-08-26 18:38:33 -04:00
USING: classes.struct struct-arrays tools.test kernel math sequences
alien.syntax alien.c-types destructors libc accessors sequences.private ;
2008-12-03 10:41:48 -05:00
2009-08-26 18:38:33 -04:00
STRUCT: test-struct-array
{ x int }
{ y int } ;
2008-12-03 10:41:48 -05:00
: make-point ( x y -- struct )
2009-08-26 18:38:33 -04:00
test-struct-array <struct-boa> ;
2008-12-03 10:41:48 -05:00
[ 5/4 ] [
2009-08-26 18:38:33 -04:00
2 test-struct-array <struct-array>
2008-12-03 10:41:48 -05:00
1 2 make-point over set-first
3 4 make-point over set-second
2009-08-26 18:38:33 -04:00
0 [ [ x>> ] [ y>> ] bi / + ] reduce
2008-12-03 10:41:48 -05:00
] unit-test
2008-12-03 10:54:59 -05:00
[ 5/4 ] [
[
2009-08-26 18:38:33 -04:00
2 test-struct-array malloc-struct-array
dup &free drop
2008-12-03 10:54:59 -05:00
1 2 make-point over set-first
3 4 make-point over set-second
2009-08-26 18:38:33 -04:00
0 [ [ x>> ] [ y>> ] bi / + ] reduce
2008-12-03 10:54:59 -05:00
] with-destructors
] unit-test
2008-12-18 22:17:24 -05:00
2009-08-26 18:38:33 -04:00
[ ] [ ALIEN: 123 10 test-struct-array <direct-struct-array> drop ] unit-test
2008-12-18 22:17:24 -05:00
[ ] [
[
2009-08-26 18:38:33 -04:00
10 test-struct-array malloc-struct-array
&free drop
2008-12-18 22:17:24 -05:00
] with-destructors
] unit-test
2009-08-26 18:38:33 -04:00
[ 15 ] [ 15 10 test-struct-array <struct-array> resize length ] unit-test