1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29
|
set (tests
tAipsIOCarray
tAipsIO
tBucketBuffered
tBucketCache
# tBucketFile # https://github.com/casacore/casacore/issues/73
tBucketMapped
# tByteIO # https://github.com/casacore/casacore/issues/73
tByteSink
tByteSinkSource
tFilebufIO
tFileIO
tLargeFileIO
tLockFile
tMFFileIO
tMappedIO
tMMapIO
tMultiFile
tMultiHDF5
tTapeIO
tTypeIO
)
foreach (test ${tests})
add_executable (${test} ${test}.cc)
target_link_libraries (${test} casa_casa)
add_test (${test} ${CMAKE_SOURCE_DIR}/cmake/cmake_assay ./${test})
add_dependencies(check ${test})
endforeach (test)
|