[Piglit] [PATCH] shader_runner: don't abort on atomic counter subtest failure

Marek Olšák maraeo at gmail.com
Fri May 24 01:38:43 UTC 2019


From: Marek Olšák <marek.olsak at amd.com>

---
 tests/shaders/shader_runner.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/tests/shaders/shader_runner.c b/tests/shaders/shader_runner.c
index 8404d548f..6729d82b7 100644
--- a/tests/shaders/shader_runner.c
+++ b/tests/shaders/shader_runner.c
@@ -3958,27 +3958,27 @@ piglit_display(void)
 		} else if (parse_str(line, "probe depth ", &rest)) {
 			parse_floats(rest, c, 3, NULL);
 			if (!piglit_probe_pixel_depth((int) c[0], (int) c[1],
 						      c[2])) {
 				result = PIGLIT_FAIL;
 			}
 		} else if (sscanf(line,
 				  "probe atomic counter buffer %u %u %s %u",
 				  &ux, &uy, s, &uz) == 4) {
 			if (!probe_atomic_counter(ux, uy, s, uz, true)) {
-				piglit_report_result(PIGLIT_FAIL);
+				result = PIGLIT_FAIL;
 			}
 		} else if (sscanf(line,
 				  "probe atomic counter %u %s %u",
 				  &ux, s, &uy) == 3) {
 			if (!probe_atomic_counter(0, ux, s, uy, false)) {
-				piglit_report_result(PIGLIT_FAIL);
+				result = PIGLIT_FAIL;
 			}
 		} else if (sscanf(line, "probe ssbo uint %d %d %s 0x%x",
 				  &x, &y, s, &z) == 4) {
 			if (!probe_ssbo_uint(x, y, s, z))
 				result = PIGLIT_FAIL;
 		} else if (sscanf(line, "probe ssbo uint %d %d %s %d",
 				  &x, &y, s, &z) == 4) {
 			if (!probe_ssbo_uint(x, y, s, z))
 				result = PIGLIT_FAIL;
 		} else if (sscanf(line,
-- 
2.17.1



More information about the Piglit mailing list