|
grim@388
|
1 |
enable_testing() |
|
grim@388
|
2 |
|
|
grim@400
|
3 |
############################################################################### |
|
grim@400
|
4 |
# collection tests |
|
grim@400
|
5 |
############################################################################### |
|
grim@400
|
6 |
add_executable(test-gplate-collection-interface test-gplate-collection-interface.c) |
|
grim@400
|
7 |
target_link_libraries(test-gplate-collection-interface gplate) |
|
grim@400
|
8 |
add_test(GPlateCollectionInterface |
|
grim@402
|
9 |
${GTESTER} -k --verbose -o test-gplate-collection-interface.log |
|
grim@400
|
10 |
test-gplate-collection-interface |
|
grim@400
|
11 |
) |
|
grim@388
|
12 |
|
|
grim@400
|
13 |
############################################################################### |
|
grim@400
|
14 |
# utility tests |
|
grim@400
|
15 |
############################################################################### |
|
grim@400
|
16 |
add_executable(test-gplate-utility-functions test-gplate-utility-functions.c) |
|
grim@400
|
17 |
target_link_libraries(test-gplate-utility-functions gplate) |
|
grim@400
|
18 |
add_test(GPlateUtilityFunctions |
|
grim@402
|
19 |
${GTESTER} -k --verbose -o test-gplate-utility-functions.log |
|
grim@400
|
20 |
test-gplate-utility-functions |
|
grim@400
|
21 |
) |
|
grim@388
|
22 |
|