Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCampbell Barton <ideasman42@gmail.com>2014-03-27 00:30:22 +0400
committerCampbell Barton <ideasman42@gmail.com>2014-03-27 01:30:14 +0400
commitf26492d3e814af416fe96c69ee22db915bbb3d13 (patch)
tree42d3318dca84ca7c0b7802e0ad9d3a9db052485f /source/tests/CMakeLists.txt
parentd9557d01bd2f724bc8995c916f91d66ef85d2faa (diff)
CTest: disable bl_run_operators.py, fun for finding crashes, takes a long time
Diffstat (limited to 'source/tests/CMakeLists.txt')
-rw-r--r--source/tests/CMakeLists.txt11
1 files changed, 8 insertions, 3 deletions
diff --git a/source/tests/CMakeLists.txt b/source/tests/CMakeLists.txt
index 0f29e26a66f..85c68693792 100644
--- a/source/tests/CMakeLists.txt
+++ b/source/tests/CMakeLists.txt
@@ -22,6 +22,9 @@
# Use '--write-blend=/tmp/test.blend' to view output
+# Some tests are interesting but take too long to run
+# and don't give deterministic results
+set(USE_EXPERIMENTAL_TESTS FALSE)
set(TEST_SRC_DIR ${CMAKE_SOURCE_DIR}/../lib/tests)
set(TEST_OUT_DIR ${CMAKE_BINARY_DIR}/tests)
@@ -63,9 +66,11 @@ add_test(script_load_modules ${TEST_BLENDER_EXE}
)
# test running operators doesn't segfault under various conditions
-add_test(script_run_operators ${TEST_BLENDER_EXE}
- --python ${CMAKE_CURRENT_LIST_DIR}/bl_run_operators.py
-)
+if(USE_EXPERIMENTAL_TESTS)
+ add_test(script_run_operators ${TEST_BLENDER_EXE}
+ --python ${CMAKE_CURRENT_LIST_DIR}/bl_run_operators.py
+ )
+endif()
# test running mathutils testing script
add_test(script_pyapi_mathutils ${TEST_BLENDER_EXE}