Removed unnecessary installation of tests

The maxadmin tests were installed even though they do not require any
configuring to work.
This commit is contained in:
Markus Makela 2015-11-26 16:57:41 +02:00
parent 14d11fa4c0
commit 9e25ed4b67

View File

@ -1,4 +1,2 @@
install(PROGRAMS maxadmin_test.sh DESTINATION ${CMAKE_BINARY_DIR})
install(PROGRAMS maxadmin_stress.sh DESTINATION ${CMAKE_BINARY_DIR})
add_test(TestMaxAdmin ${CMAKE_BINARY_DIR}/maxadmin_test.sh)
add_test(TestMaxAdminStress ${CMAKE_BINARY_DIR}/maxadmin_stress.sh)
add_test(TestMaxAdmin ${CMAKE_CURRENT_SOURCE_DIR}/maxadmin_test.sh)
add_test(TestMaxAdminStress ${CMAKE_CURRENT_SOURCE_DIR}/maxadmin_stress.sh)