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 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60
|
SET(KIT Common)
CREATE_TEST_SOURCELIST(Tests ${KIT}CxxTests.cxx
ObjectFactory.cxx
otherArrays.cxx
otherEmptyCell.cxx
otherRectilinearGrid.cxx
otherCellBoundaries.cxx
otherCellPosition.cxx
otherStructuredGrid.cxx
otherTimerLog.cxx
otherLookupTable.cxx
otherByteSwap.cxx
otherCellArray.cxx
otherStringArray.cxx
otherCellTypes.cxx
otherFieldData.cxx
quadraticEvaluation.cxx
TestAmoebaMinimizer.cxx
TestGarbageCollector.cxx
TestImageIterator.cxx
TestDirectory.cxx
TestSmartPointer.cxx
SystemInformation.cxx
EXTRA_INCLUDE vtkTestDriver.h
)
ADD_EXECUTABLE(${KIT}CxxTests ${Tests})
TARGET_LINK_LIBRARIES(${KIT}CxxTests vtkCommon vtkFiltering)
SET (TestsToRun ${Tests})
REMOVE (TestsToRun ${KIT}CxxTests.cxx)
# Configure a header needed by SystemInformation.
CONFIGURE_FILE("${VTK_SOURCE_DIR}/Common/Testing/Cxx/SystemInformation.h.in"
"${VTK_BINARY_DIR}/Common/Testing/Cxx/SystemInformation.h"
@ONLY IMMEDIATE)
#
# Add all the executables
FOREACH (test ${TestsToRun})
GET_FILENAME_COMPONENT(TName ${test} NAME_WE)
ADD_TEST(${TName} ${CXX_TEST_PATH}/${KIT}CxxTests ${TName})
ENDFOREACH (test)
#
# Add the TestCxxFeatures test by itself so that if it doesn't compile
# we don't loose all the tests for common
#
ADD_EXECUTABLE(TestCxxFeatures TestCxxFeatures.cxx)
TARGET_LINK_LIBRARIES(TestCxxFeatures vtkCommon)
ADD_TEST(TestCxxFeatures ${CXX_TEST_PATH}/TestCxxFeatures)
#
# Add the TestInstantiator test by itself because it is designed to
# test pulling in all class's symbols. We don't want the other tests
# to draw in symbols.
#
ADD_EXECUTABLE(TestInstantiator TestInstantiator.cxx)
TARGET_LINK_LIBRARIES(TestInstantiator vtkCommon)
ADD_TEST(TestInstantiator ${CXX_TEST_PATH}/TestInstantiator)
|