typos in ffi tests

release
Joe Groff 2010-04-01 03:02:36 -07:00
parent 4fd61f0b5c
commit a191937c47
3 changed files with 11 additions and 11 deletions

View File

@ -614,14 +614,14 @@ FUNCTION: int ffi_test_51 ( int x, int y, int z ) ;
FUNCTION: int ffi_test_52 ( int x, float y, int z ) ;
FUNCTION: int ffi_test_53 ( int x, float y, int z, int w ) ;
FUNCTION: int ffi_test_54 ( test-struct-11 x, int y ) ;
FUNCTION: int ffi_test_55 ( int x, int y, int z ) ;
FUNCTION: int ffi_test_56 ( int x, int y, int z ) ;
FUNCTION: int ffi_test_55 ( test-struct-11 x, int y, int z ) ;
FUNCTION: int ffi_test_56 ( test-struct-11 x, int y, int z, int w ) ;
[ 4 ] [ 3 ffi_test_49 ] unit-test
[ 8 ] [ 3 4 ffi_test_50 ] unit-test
[ 13 ] [ 3 4 5 ffi_test_51 ] unit-test
[ 13 ] [ 3 4.0 5 ffi_test_52 ] unit-test
[ 19 ] [ 3 4.0 5 6 ffi_test_53 ] unit-test
[ 13 ] [ 3 4 test-struct-11 <struct> 5 ffi_test_54 ] unit-test
[ 19 ] [ 3 4 test-struct-11 <struct> 5 6 ffi_test_55 ] unit-test
[ 26 ] [ 3 4 test-struct-11 <struct> 5 6 7 ffi_test_56 ] unit-test
[ 13 ] [ 3 4 test-struct-11 <struct-boa> 5 ffi_test_54 ] unit-test
[ 19 ] [ 3 4 test-struct-11 <struct-boa> 5 6 ffi_test_55 ] unit-test
[ 26 ] [ 3 4 test-struct-11 <struct-boa> 5 6 7 ffi_test_56 ] unit-test

View File

@ -339,17 +339,17 @@ FACTOR_FASTCALL(int) ffi_test_53(int x, float y, int z, int w)
return x + y + z + w + 1;
}
FACTOR_FASTCALL(int) ffi_test_54(test_struct_11 x, int y)
FACTOR_FASTCALL(int) ffi_test_54(struct test_struct_11 x, int y)
{
return x.x + x.y + y + 1;
}
FACTOR_FASTCALL(int) ffi_test_55(test_struct_11 x, int y, int z)
FACTOR_FASTCALL(int) ffi_test_55(struct test_struct_11 x, int y, int z)
{
return x.x + x.y + y + z + 1;
}
FACTOR_FASTCALL(int) ffi_test_56(test_struct_11 x, int y, int z, int w)
FACTOR_FASTCALL(int) ffi_test_56(struct test_struct_11 x, int y, int z, int w)
{
return x.x + x.y + y + z + w + 1;
}

View File

@ -128,6 +128,6 @@ FACTOR_EXPORT FACTOR_FASTCALL(int) ffi_test_50(int x, int y);
FACTOR_EXPORT FACTOR_FASTCALL(int) ffi_test_51(int x, int y, int z);
FACTOR_EXPORT FACTOR_FASTCALL(int) ffi_test_52(int x, float y, int z);
FACTOR_EXPORT FACTOR_FASTCALL(int) ffi_test_53(int x, float y, int z, int w);
FACTOR_EXPORT FACTOR_FASTCALL(int) ffi_test_54(test_struct_11 x, int y);
FACTOR_EXPORT FACTOR_FASTCALL(int) ffi_test_55(test_struct_11 x, int y, int z);
FACTOR_EXPORT FACTOR_FASTCALL(int) ffi_test_56(test_struct_11 x, int y, int z, int w);
FACTOR_EXPORT FACTOR_FASTCALL(int) ffi_test_54(struct test_struct_11 x, int y);
FACTOR_EXPORT FACTOR_FASTCALL(int) ffi_test_55(struct test_struct_11 x, int y, int z);
FACTOR_EXPORT FACTOR_FASTCALL(int) ffi_test_56(struct test_struct_11 x, int y, int z, int w);