From afeb38f76ff39f53a9669ed5894d304bda68d3ed Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Cl=C3=A9ment=20Foucault?= Date: Tue, 9 Jul 2024 14:40:30 +0200 Subject: [PATCH] EEVEE: Blacklist pointcloud volume render tests This test is testing a feature that is not supported yet and has different behavior depending on the hardware. --- tests/data | 2 +- tests/python/eevee_next_render_tests.py | 8 +++++++- 2 files changed, 8 insertions(+), 2 deletions(-) diff --git a/tests/data b/tests/data index 181a40d6c97..8e23c612aa0 160000 --- a/tests/data +++ b/tests/data @@ -1 +1 @@ -Subproject commit 181a40d6c972c591996c49588d18d6154b9fbc6a +Subproject commit 8e23c612aa073d458569be57f393a861c7e32d1a diff --git a/tests/python/eevee_next_render_tests.py b/tests/python/eevee_next_render_tests.py index f6face48bad..cb711f2ec53 100644 --- a/tests/python/eevee_next_render_tests.py +++ b/tests/python/eevee_next_render_tests.py @@ -10,6 +10,12 @@ import subprocess import sys from pathlib import Path +# List of .blend files that are known to be failing and are not ready to be +# tested, or that only make sense on some devices. Accepts regular expressions. +BLACKLIST = [ + # Blacklisted due to point cloud volume differences between platforms (to be fixed). + "points_volume.blend", +] def setup(): import bpy @@ -176,7 +182,7 @@ def main(): reference_override_dir = "eevee_next_renders/amd" from modules import render_report - report = render_report.Report("Eevee Next", output_dir, oiiotool) + report = render_report.Report("Eevee Next", output_dir, oiiotool, blacklist=BLACKLIST) report.set_pixelated(True) report.set_engine_name('eevee_next') report.set_reference_dir("eevee_next_renders")