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 61 62 63 64 65 66 67
|
# Tell TestSystemInformation where to find the build trees.
set(TestSystemInformation_ARGS ${CMAKE_BINARY_DIR})
# Tell TestXMLFileOutputWindow where to write test file
set(TestXMLFileOutputWindow_ARGS ${CMAKE_BINARY_DIR}/Testing/Temporary/XMLFileOutputWindow.txt)
vtk_add_test_cxx(${vtk-module}CxxTests tests
NO_DATA NO_VALID NO_OUTPUT
UnitTestMath.cxx
TestAngularPeriodicDataArray.cxx
TestArrayAPI.cxx
TestArrayAPIConvenience.cxx
TestArrayAPIDense.cxx
TestArrayAPISparse.cxx
TestArrayBool.cxx
TestAtomic.cxx
TestScalarsToColors.cxx
# TestArrayCasting.cxx # Uses Boost in its own separate test.
TestArrayExtents.cxx
TestArrayInterpolationDense.cxx
TestArrayLookup.cxx
TestArrayNullValues.cxx
TestArraySize.cxx
TestArrayUniqueValueDetection.cxx
TestArrayUserTypes.cxx
TestArrayVariants.cxx
TestCollection.cxx
TestConditionVariable.cxx
# TestCxxFeatures.cxx # This is in its own exe too.
TestDataArray.cxx
TestDataArrayComponentNames.cxx
TestDataArrayIterators.cxx
TestGarbageCollector.cxx
# TestInstantiator.cxx # Have not enabled instantiators.
TestLookupTable.cxx
TestLookupTableThreaded.cxx
TestMath.cxx
TestMinimalStandardRandomSequence.cxx
TestNew.cxx
TestObjectFactory.cxx
TestObservers.cxx
TestObserversPerformance.cxx
TestOStreamWrapper.cxx
TestSMP.cxx
TestSmartPointer.cxx
TestSortDataArray.cxx
TestSparseArrayValidation.cxx
TestSystemInformation.cxx
TestTimePointUtility.cxx
TestUnicodeStringAPI.cxx
TestUnicodeStringArrayAPI.cxx
TestVariant.cxx
TestVariantComparison.cxx
TestWeakPointer.cxx
TestXMLFileOutputWindow.cxx
UnitTestInformationKeys.cxx
otherArrays.cxx
otherByteSwap.cxx
# These two need vtkLookupTableWithEnabling/vtkLogLookupTable - move
# them to RenderingCore or somewhere out there.
#otherLookupTable.cxx
#otherLookupTableWithEnabling.cxx
otherStringArray.cxx
)
vtk_test_cxx_executable(${vtk-module}CxxTests tests
vtkTestNewVar.cxx
)
|