From 9083c625f56439631b49e77a948c5a99889c0ea4 Mon Sep 17 00:00:00 2001 From: Emil Velikov Date: Mon, 27 Feb 2017 18:21:36 +0000 Subject: [PATCH] glsl/tests/optimization-test: correctly set compare_ir Now that we have srcdir we can use it to correctly manage/point to the script. Effectively fixing OOT invokation of `make check'. Signed-off-by: Emil Velikov Acked-by: Kenneth Graunke Reviewed-by: Eric Engestrom --- src/compiler/glsl/tests/optimization-test.sh | 8 ++------ 1 file changed, 2 insertions(+), 6 deletions(-) diff --git a/src/compiler/glsl/tests/optimization-test.sh b/src/compiler/glsl/tests/optimization-test.sh index a7d771170c5..5ae5684f7c4 100755 --- a/src/compiler/glsl/tests/optimization-test.sh +++ b/src/compiler/glsl/tests/optimization-test.sh @@ -1,11 +1,5 @@ #!/bin/sh -if [ ! -z "$srcdir" ]; then - compare_ir=`pwd`/tests/compare_ir.py -else - compare_ir=./compare_ir.py -fi - if [ -z "$PYTHON2" ]; then PYTHON2=python2 fi @@ -29,6 +23,8 @@ if [ -z "$srcdir" -o -z "$abs_builddir" ]; then abs_builddir=`pwd`/../../ fi +compare_ir=$srcdir/glsl/tests/compare_ir.py + total=0 pass=0 -- 2.30.2