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
|
# These tests are built under all conditions
set (GenericVolumePythonTests
TestFixedPointRayCasterLinearCropped.py,NO_RT
TestFixedPointRayCasterLinear.py,NO_RT
TestFixedPointRayCasterNearestCropped.py,NO_RT
TestFixedPointRayCasterNearest.py,NO_RT
cursor3D.py
gaussian.py
VolumePicker.py,NO_RT
VolumePickerCrop.py
)
if (NOT VTK_LEGACY_REMOVE)
list(APPEND GenericVolumePythonTests
volRCClipPlanes.py
volRCCropRegions.py
volRCRotateClip.py)
endif()
# These tests are only built when the rendering backend is OpenGL
set (VolumeOpenGLPythonTests
TestBunykRayCastFunction.py
TestPTZSweep.py
TestLODProp3D.py
VolumeOutlineSourceClipped.py
VolumeOutlineSource.py
)
if (NOT VTK_LEGACY_REMOVE)
list(APPEND VolumeOpenGLPythonTests
volTM2DRotateClip.py
volTM2DCropRegions.py
volTM3DCropRegions.py
volTM3DCompressedCropRegions.py
volTM3DRotateClip.py)
endif()
# These tests are only built when the rendering backend is OpenGL2
set (VolumeOpenGL2PythonTests
TestGPURayCastIndependentComponent.py,NO_RT
TestGPURayCastIndependentComponentMIP.py,NO_RT
TestGPURayCastIndependentComponentMinIP.py,NO_RT)
if ("${VTK_RENDERING_BACKEND}" STREQUAL "OpenGL2")
vtk_add_test_python(
${GenericVolumePythonTests}
${VolumeOpenGL2PythonTests}
)
else ()
vtk_add_test_python(
${GenericVolumePythonTests}
${VolumeOpenGLPythonTests}
)
if (NOT VTK_LEGACY_REMOVE)
set_tests_properties(vtkRenderingVolumePython-volTM3DCompressedCropRegions
PROPERTIES TIMEOUT 250)
set_tests_properties(vtkRenderingVolumePython-volTM3DCropRegions
PROPERTIES TIMEOUT 250)
set_tests_properties(vtkRenderingVolumePython-volTM3DRotateClip
PROPERTIES TIMEOUT 80)
endif()
endif ()
|