1.1 --- a/gplate/tests/CMakeLists.txt Sat Jun 26 15:25:18 2010 -0500
1.2 +++ b/gplate/tests/CMakeLists.txt Sun Jul 04 03:34:39 2010 -0500
1.3 @@ -1,10 +1,22 @@
1.4 enable_testing()
1.5
1.6 -add_executable(test-collection-interface test-collection-interface.c)
1.7 -target_link_libraries(test-collection-interface gplate)
1.8 -add_test(GPlateCollectionInterface test-collection-interface)
1.9 +###############################################################################
1.10 +# collection tests
1.11 +###############################################################################
1.12 +add_executable(test-gplate-collection-interface test-gplate-collection-interface.c)
1.13 +target_link_libraries(test-gplate-collection-interface gplate)
1.14 +add_test(GPlateCollectionInterface
1.15 + gtester -k --verbose -o test-gplate-collection-interface.log
1.16 + test-gplate-collection-interface
1.17 +)
1.18
1.19 -add_executable(test-util-functions test-util-functions.c)
1.20 -target_link_libraries(test-util-functions gplate)
1.21 -add_test(GPlateUtilityFunctions test-util-functions)
1.22 +###############################################################################
1.23 +# utility tests
1.24 +###############################################################################
1.25 +add_executable(test-gplate-utility-functions test-gplate-utility-functions.c)
1.26 +target_link_libraries(test-gplate-utility-functions gplate)
1.27 +add_test(GPlateUtilityFunctions
1.28 + gtester -k --verbose -o test-gplate-utility-functions.log
1.29 + test-gplate-utility-functions
1.30 +)
1.31