Initial commit
This commit is contained in:
41
libsst-math/test.c
Normal file
41
libsst-math/test.c
Normal file
@@ -0,0 +1,41 @@
|
||||
#include <stdio.h>
|
||||
#include <SST/SST_Math.h>
|
||||
|
||||
int SST_Math_Mat22d_test_fxns();
|
||||
int SST_Math_Mat33d_test_fxns();
|
||||
int SST_Math_Mat44d_test_fxns();
|
||||
|
||||
int SST_Math_Mat22f_test_fxns();
|
||||
int SST_Math_Mat33f_test_fxns();
|
||||
int SST_Math_Mat44f_test_fxns();
|
||||
|
||||
int SST_Math_Mat22u_test_fxns();
|
||||
int SST_Math_Mat33u_test_fxns();
|
||||
int SST_Math_Mat44u_test_fxns();
|
||||
|
||||
int SST_Math_Mat22i_test_fxns();
|
||||
int SST_Math_Mat33i_test_fxns();
|
||||
int SST_Math_Mat44i_test_fxns();
|
||||
|
||||
int main()
|
||||
{
|
||||
|
||||
SST_Math_Mat22d_test_fxns();
|
||||
SST_Math_Mat33d_test_fxns();
|
||||
SST_Math_Mat44d_test_fxns();
|
||||
|
||||
SST_Math_Mat22f_test_fxns();
|
||||
SST_Math_Mat33f_test_fxns();
|
||||
SST_Math_Mat44f_test_fxns();
|
||||
|
||||
SST_Math_Mat22u_test_fxns();
|
||||
SST_Math_Mat33u_test_fxns();
|
||||
SST_Math_Mat44u_test_fxns();
|
||||
|
||||
SST_Math_Mat22i_test_fxns();
|
||||
SST_Math_Mat33i_test_fxns();
|
||||
SST_Math_Mat44i_test_fxns();
|
||||
|
||||
|
||||
return 0;
|
||||
}
|
||||
Reference in New Issue
Block a user