On 24 February 2017 at 15:34, Eric Engestrom <eric.engest...@imgtec.com> wrote:
> On Thursday, 2017-02-23 16:43:07 +0000, Emil Velikov wrote:
>> From: Emil Velikov <emil.veli...@collabora.com>
>>
>> Otherwise we'll fail when invoking the script outside of "make check"
>>
>> Signed-off-by: Emil Velikov <emil.veli...@collabora.com>
>> ---
>>  src/compiler/glsl/tests/optimization-test | 10 ++++++++++
>>  1 file changed, 10 insertions(+)
>>
>> diff --git a/src/compiler/glsl/tests/optimization-test 
>> b/src/compiler/glsl/tests/optimization-test
>> index 26a51be698..7ccbb4467d 100755
>> --- a/src/compiler/glsl/tests/optimization-test
>> +++ b/src/compiler/glsl/tests/optimization-test
>> @@ -6,6 +6,16 @@ else
>>     compare_ir=./compare_ir
>>  fi
>>
>> +if [ -z "$PYTHON2" ]; then
>> +    PYTHON2=python2
>> +fi
>> +
>> +which $PYTHON2 >/dev/null
>> +if [ "x$?" != x0 ]; then
>
> You want a numerical comparison here (`[ $? -ne 0 ]`), not a string
> comparison, and you could also simplify it as:
>         if ! which $PYTHON2 >/dev/null; then
Similar hunk in src/Makefile.am did fail on zsh, so I opted for the split here.
Need to track down exact reason behind it, but the series became quite
large even w/o it ;-)

Barring strong preference on the last suggestion I'll stick with -ne 0.

Thanks
Emil
_______________________________________________
mesa-dev mailing list
mesa-dev@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/mesa-dev

Reply via email to