summaryrefslogtreecommitdiffstats
path: root/src/glsl/glcpp/tests
diff options
context:
space:
mode:
Diffstat (limited to 'src/glsl/glcpp/tests')
-rwxr-xr-xsrc/glsl/glcpp/tests/glcpp-test6
1 files changed, 1 insertions, 5 deletions
diff --git a/src/glsl/glcpp/tests/glcpp-test b/src/glsl/glcpp/tests/glcpp-test
index 1f371398f69..1db75237567 100755
--- a/src/glsl/glcpp/tests/glcpp-test
+++ b/src/glsl/glcpp/tests/glcpp-test
@@ -34,14 +34,10 @@ total=0
pass=0
clean=0
-builddir=`pwd`
-testdir=`dirname $0`
-cd $testdir
-
echo "====== Testing for correctness ======"
for test in *.c; do
echo -n "Testing $test..."
- $builddir/glcpp < $test > $test.out 2>&1
+ ../glcpp < $test > $test.out 2>&1
total=$((total+1))
if cmp $test.expected $test.out >/dev/null 2>&1; then
echo "PASS"