Improve consistency of unit tests names

Signed-off-by: Leonardo de Moura <leonardo@microsoft.com>
This commit is contained in:
Leonardo de Moura 2013-07-21 14:52:20 -07:00
parent 8af56394cc
commit ecc8e8f813

View file

@ -1,3 +1,3 @@
add_executable(test_interval interval.cpp)
target_link_libraries(test_interval ${EXTRA_LIBS})
add_test(interval ${CMAKE_CURRENT_BINARY_DIR}/test_interval)
add_executable(interval_tst interval.cpp)
target_link_libraries(interval_tst ${EXTRA_LIBS})
add_test(interval ${CMAKE_CURRENT_BINARY_DIR}/interval_tst)