aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTom Gall <tom.gall@linaro.org>2013-02-20 14:28:24 -0600
committerTom Gall <tom.gall@linaro.org>2013-03-25 14:22:06 -0500
commit3b5df674e777cca44e4019b6e88cd94750751c6b (patch)
tree4c2bc939a1a2be59b08396bb02282f1492e90d1e
parenta1a959710ae42ee6b9f563435682bc9b6352ef90 (diff)
Fix a bug where blank line was at EOF. This anoys git.
-rwxr-xr-xtests/spec/glsl-es-1.00/variable-index-read.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/spec/glsl-es-1.00/variable-index-read.sh b/tests/spec/glsl-es-1.00/variable-index-read.sh
index da1fc2df..b828b317 100755
--- a/tests/spec/glsl-es-1.00/variable-index-read.sh
+++ b/tests/spec/glsl-es-1.00/variable-index-read.sh
@@ -352,6 +352,7 @@ EOF
for r in $rows; do
expect=$(((i - 1) * (matrix_dim * matrix_dim) + (c - 1) * matrix_dim + r))
+ echo
if [ "x$expect_type" = "xfloat" ]; then
echo "uniform int row $((r - 1))"
echo "uniform float expect $expect"
@@ -367,7 +368,6 @@ EOF
x=$((x + 5))
y=$((y + 5))
echo "probe rgb $x $y 0.0 1.0 0.0"
- echo
done
done
done