Revision 462, 1.2 kB
(checked in by vbarta, 15 years ago)
|
moved test of marginal & condition to epdf_harness
|
-
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 egiw_harness.cpp egiw_harness.h epdf_harness.cpp epdf_harness.h mat_checks.cpp mat_checks.h mpdf_harness.cpp mpdf_harness.h test_util.cpp test_util.h) |
---|
10 | target_link_libraries(testutil bdm itpp unittest) |
---|
11 | |
---|
12 | add_executable(square_mat_stress square_mat_stress.cpp) |
---|
13 | target_link_libraries(square_mat_stress bdm itpp testutil unittest) |
---|
14 | |
---|
15 | EXEC(emix_test) |
---|
16 | EXEC(testResample) |
---|
17 | |
---|
18 | # ESTIM EXECS |
---|
19 | EXEC(arx_test) |
---|
20 | EXEC(arx_elem_test) |
---|
21 | EXEC(merger_test) |
---|
22 | EXEC(merger_2d_test) |
---|
23 | EXEC(merger_iter_test) |
---|
24 | EXEC(mixtures_test) |
---|
25 | |
---|
26 | EXEC(test_kalman) |
---|
27 | EXEC(test_particle) |
---|
28 | EXEC(testSmp) |
---|
29 | EXEC(test_kalman_QR) |
---|
30 | EXEC(test_kalman_QRexh) |
---|
31 | |
---|
32 | EXEC(blas_test) |
---|
33 | |
---|
34 | # using UnitTest++ |
---|
35 | add_executable(testsuite datalink_test.cpp egiw_test.cpp epdf_test.cpp loggers_test.cpp mpdf_test.cpp rv_test.cpp square_mat_test.cpp testsuite.cpp test_user_info.cpp test_shared_ptr.cpp) |
---|
36 | target_link_libraries(testsuite bdm itpp testutil unittest) |
---|
37 | |
---|
38 | add_subdirectory(tutorial) |
---|
39 | add_subdirectory(unittest-cpp) |
---|