Subversion Repositories DashDisplay

Rev

Details | Last modification | View Log | RSS feed

Rev Author Line No. Line
56 mjames 1
#include "jtest.h"
2
#include "basic_math_test_group.h"
3
#include "complex_math_test_group.h"
4
#include "controller_test_group.h"
5
#include "fast_math_test_group.h"
6
#include "filtering_test_group.h"
7
#include "matrix_test_group.h"
8
#include "statistics_test_group.h"
9
#include "support_test_group.h"
10
#include "transform_test_group.h"
11
#include "intrinsics_test_group.h"
12
 
13
JTEST_DEFINE_GROUP(all_tests)
14
{
15
    /*
16
      To skip a test, comment it out
17
    */
18
    JTEST_GROUP_CALL(basic_math_tests);
19
    JTEST_GROUP_CALL(complex_math_tests);
20
    JTEST_GROUP_CALL(controller_tests);
21
    JTEST_GROUP_CALL(fast_math_tests);
22
    JTEST_GROUP_CALL(filtering_tests);
23
    JTEST_GROUP_CALL(matrix_tests);
24
    JTEST_GROUP_CALL(statistics_tests);
25
    JTEST_GROUP_CALL(support_tests);
26
    JTEST_GROUP_CALL(transform_tests);
27
    JTEST_GROUP_CALL(intrinsics_tests);
28
 
29
    return;
30
}