Revision 607, 1.6 kB
(checked in by smidl, 15 years ago)
|
test for ticket 12 is now part of testsuite - see tests/arx_straux_test.cpp
|
-
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 | SET(testutil_src egiw_harness.cpp egiw_harness.h epdf_harness.cpp epdf_harness.h mat_checks.cpp mat_checks.h |
---|
10 | mpdf_harness.cpp mpdf_harness.h square_mat_point.cpp square_mat_point.h test_util.cpp test_util.h) |
---|
11 | |
---|
12 | add_library(testutil ${testutil_src}) |
---|
13 | target_link_libraries(testutil bdm itpp unittest) |
---|
14 | |
---|
15 | add_executable(square_mat_stress square_mat_stress.cpp) |
---|
16 | target_link_libraries(square_mat_stress testutil unittest) |
---|
17 | LINK_EXEC(square_mat_stress) |
---|
18 | |
---|
19 | add_executable(square_mat_prep additive_generator.cpp additive_generator.h generator.cpp generator.h |
---|
20 | size_generator.cpp size_generator.h square_mat_prep.cpp) |
---|
21 | target_link_libraries(square_mat_prep testutil) |
---|
22 | LINK_EXEC(square_mat_prep) |
---|
23 | |
---|
24 | EXEC(testResample) |
---|
25 | |
---|
26 | # ESTIM EXECS |
---|
27 | EXEC(arx_test) |
---|
28 | EXEC(arx_elem_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(test_kalman_QR) |
---|
36 | #EXEC(test_kalman_QRexh) |
---|
37 | |
---|
38 | EXEC(blas_test) |
---|
39 | |
---|
40 | # using UnitTest++ |
---|
41 | add_executable(testsuite arx_straux_test.cpp datalink_test.cpp datasource_test.cpp egiw_test.cpp emix_test.cpp epdf_test.cpp logger_test.cpp LQG_test.cpp merger_test.cpp |
---|
42 | mpdf_test.cpp randun_test.cpp rectangular_support_test.cpp rv_test.cpp shared_ptr_test.cpp square_mat_test.cpp testsuite.cpp user_info_test.cpp) |
---|
43 | target_link_libraries(testsuite testutil unittest) |
---|
44 | LINK_EXEC(testsuite) |
---|
45 | |
---|
46 | add_subdirectory(tutorial) |
---|
47 | add_subdirectory(unittest-cpp) |
---|