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
path: root/tests
diff options
context:
space:
mode:
authorCampbell Barton <ideasman42@gmail.com>2017-08-11 03:33:39 +0300
committerCampbell Barton <ideasman42@gmail.com>2017-08-11 03:33:39 +0300
commitd1328feeb125328615bcf832cbc82d9f9a18e023 (patch)
tree9243fcdd057cb7cbc710393158a7c15c41459919 /tests
parentc4201e57f36e7a5bcb711bd1a92d5b334cd40dff (diff)
parent0398ee10a1b727c63b344db3d6c8d78f6bbfd633 (diff)
Merge branch 'master' into blender2.8
Diffstat (limited to 'tests')
-rw-r--r--tests/python/CMakeLists.txt1
-rwxr-xr-xtests/python/cycles_render_tests.py14
2 files changed, 9 insertions, 6 deletions
diff --git a/tests/python/CMakeLists.txt b/tests/python/CMakeLists.txt
index afd61d5ab67..dd824b9f824 100644
--- a/tests/python/CMakeLists.txt
+++ b/tests/python/CMakeLists.txt
@@ -534,6 +534,7 @@ if(WITH_CYCLES)
if(WITH_OPENGL_TESTS)
add_cycles_render_test(opengl)
endif()
+ add_cycles_render_test(denoise)
add_cycles_render_test(displacement)
add_cycles_render_test(image_data_types)
add_cycles_render_test(image_mapping)
diff --git a/tests/python/cycles_render_tests.py b/tests/python/cycles_render_tests.py
index ea84f27ab7e..ffd8627dbf2 100755
--- a/tests/python/cycles_render_tests.py
+++ b/tests/python/cycles_render_tests.py
@@ -222,6 +222,14 @@ class Report:
def verify_output(report, filepath):
ref_img, new_img, diff_img = test_get_images(filepath)
+
+ # copy new image
+ if os.path.exists(new_img):
+ os.remove(new_img)
+ if os.path.exists(TEMP_FILE):
+ shutil.copy(TEMP_FILE, new_img)
+
+
if not os.path.exists(ref_img):
return False
@@ -256,12 +264,6 @@ def verify_output(report, filepath):
if VERBOSE:
print_message(e.output.decode("utf-8"))
- # copy new image
- if os.path.exists(new_img):
- os.remove(new_img)
- if os.path.exists(TEMP_FILE):
- shutil.copy(TEMP_FILE, new_img)
-
return not failed