aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorEmil Velikov <[email protected]>2017-02-22 19:54:58 +0000
committerEmil Velikov <[email protected]>2017-03-10 14:12:48 +0000
commita3782f2b7a324efa0963d3b8f6ea8879106e80ab (patch)
tree63f7314a09ce7c4d6f42dd69b7f376676fd21276
parent05c1d6d564daf6ab1a4c3df1450effb6ef28d24a (diff)
glsl/tests: remove any bashisms
Signed-off-by: Emil Velikov <[email protected]> Reviewed-by: Andreas Boll <[email protected]> Reviewed-by: Eric Engestrom <[email protected]>
-rwxr-xr-xsrc/compiler/glsl/tests/optimization-test.sh4
-rwxr-xr-xsrc/compiler/glsl/tests/warnings-test.sh4
2 files changed, 4 insertions, 4 deletions
diff --git a/src/compiler/glsl/tests/optimization-test.sh b/src/compiler/glsl/tests/optimization-test.sh
index 9cc3cae3a35..dc9740f69f4 100755
--- a/src/compiler/glsl/tests/optimization-test.sh
+++ b/src/compiler/glsl/tests/optimization-test.sh
@@ -1,4 +1,4 @@
-#!/usr/bin/env bash
+#!/bin/sh
if [ ! -z "$srcdir" ]; then
compare_ir=`pwd`/tests/compare_ir.py
@@ -35,7 +35,7 @@ echo ""
echo "$pass/$total tests returned correct results"
echo ""
-if [[ $pass == $total ]]; then
+if [ $pass = $total ]; then
exit 0
else
exit 1
diff --git a/src/compiler/glsl/tests/warnings-test.sh b/src/compiler/glsl/tests/warnings-test.sh
index 1bea4665394..6a52d4064f8 100755
--- a/src/compiler/glsl/tests/warnings-test.sh
+++ b/src/compiler/glsl/tests/warnings-test.sh
@@ -1,4 +1,4 @@
-#!/usr/bin/env bash
+#!/bin/sh
# Execute several shaders, and check that the InfoLog outcome is the expected.
@@ -24,7 +24,7 @@ echo ""
echo "$pass/$total tests returned correct results"
echo ""
-if [[ $pass == $total ]]; then
+if [ $pass = $total ]; then
exit 0
else
exit 1