From 8c921544a0e873f72a6d4e3ae0fe4316eda84b23 Mon Sep 17 00:00:00 2001 From: Matt Pharr Date: Thu, 18 Aug 2011 20:40:50 +0100 Subject: [PATCH] fix broken test --- tests/test-125.ispc | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/tests/test-125.ispc b/tests/test-125.ispc index ea16245d..d92d671c 100644 --- a/tests/test-125.ispc +++ b/tests/test-125.ispc @@ -4,9 +4,10 @@ export uniform int width() { return programCount; } export void f_fu(uniform float RET[], uniform float aFOO[], uniform float b) { float a = aFOO[programIndex]; - if (a < 3) + if (a < 3) { if (all(a < 3)) RET[programIndex] = 1; + } else RET[programIndex] = 0; }