summaryrefslogtreecommitdiff
path: root/src/glsl/tests/optimization-test
blob: 59383f8f912e3d95611a25626f38017ccdf36c61 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
#!/bin/bash

if [ ! -z "$srcdir" ]; then
   compare_ir=`pwd`/tests/compare_ir
else
   compare_ir=./compare_ir
fi

total=0
pass=0

echo "====== Testing optimization passes ======"
for test in `find . -iname '*.opt_test'`; do
    echo -n "Testing $test..."
    (cd `dirname "$test"`; ./`basename "$test"`) > "$test.out" 2>&1
    total=$((total+1))
    if $PYTHON2 $PYTHON_FLAGS $compare_ir "$test.expected" "$test.out" >/dev/null 2>&1; then
        echo "PASS"
        pass=$((pass+1))
    else
        echo "FAIL"
        $PYTHON2 $PYTHON_FLAGS $compare_ir "$test.expected" "$test.out"
    fi
done

echo ""
echo "$pass/$total tests returned correct results"
echo ""

if [[ $pass == $total ]]; then
    exit 0
else
    exit 1
fi