Revision 426, 1.2 kB
(checked in by vbarta, 15 years ago)
|
added unit & stress tests for ldmat & chmat (as well as other descendants of square_mat)
|
-
Property svn:eol-style set to
native
|
Line | |
---|
1 | # Make sure the compiler can find include files from our Bdm library. |
---|
2 | include_directories (${BDM_SOURCE_DIR}/bdm) |
---|
3 | include_directories (./unittest-cpp) |
---|
4 | |
---|
5 | # Make sure the linker can find the Hello library once it is built. |
---|
6 | link_directories (${BDM_BINARY_DIR}/bdm) |
---|
7 | link_directories (./unittest-cpp) |
---|
8 | |
---|
9 | add_library(testutil mat_checks.cpp mat_checks.h test_util.cpp test_util.h) |
---|
10 | target_link_libraries(testutil bdm itpp unittest) |
---|
11 | |
---|
12 | EXEC(chmat_test) |
---|
13 | EXEC(ldmat_test) |
---|
14 | |
---|
15 | add_executable(square_mat_stress square_mat_stress.cpp) |
---|
16 | target_link_libraries(square_mat_stress bdm itpp testutil unittest) |
---|
17 | |
---|
18 | EXEC(fsqmat_test) |
---|
19 | EXEC(enorm_test) |
---|
20 | EXEC(egiw_test) |
---|
21 | EXEC(emix_test) |
---|
22 | EXEC(test0) |
---|
23 | EXEC(testResample) |
---|
24 | |
---|
25 | # ESTIM EXECS |
---|
26 | EXEC(arx_test) |
---|
27 | EXEC(arx_elem_test) |
---|
28 | EXEC(merger_test) |
---|
29 | EXEC(merger_2d_test) |
---|
30 | EXEC(merger_iter_test) |
---|
31 | EXEC(mixtures_test) |
---|
32 | |
---|
33 | EXEC(test_kalman) |
---|
34 | EXEC(test_particle) |
---|
35 | EXEC(testSmp) |
---|
36 | EXEC(testEpdf) |
---|
37 | EXEC(test_kalman_QR) |
---|
38 | EXEC(test_kalman_QRexh) |
---|
39 | |
---|
40 | EXEC(blas_test) |
---|
41 | |
---|
42 | # using UnitTest++ |
---|
43 | add_executable(testsuite datalink_test.cpp loggers_test.cpp rv_test.cpp square_mat_test.cpp testsuite.cpp test_user_info.cpp test_shared_ptr.cpp) |
---|
44 | target_link_libraries(testsuite bdm itpp testutil unittest) |
---|
45 | |
---|
46 | add_subdirectory(tutorial) |
---|
47 | add_subdirectory(unittest-cpp) |
---|