aboutsummaryrefslogtreecommitdiffstats
path: root/src/compiler/glsl/tests/optimization-test.sh
blob: a7d771170c5f1873f0af23289729c8032a750389 (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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
#!/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

which $PYTHON2 >/dev/null
if [ $? -ne 0 ]; then
    echo "Could not find python2. Make sure that PYTHON2 variable is correctly set."
    exit 1
fi

if [ -z "$srcdir" -o -z "$abs_builddir" ]; then
    echo ""
    echo "Warning: you're invoking the script manually and things may fail."
    echo "Attempting to determine/set srcdir and abs_builddir variables."
    echo ""

    # Variable should point to the Makefile.glsl.am
    srcdir=./../../
    cd `dirname "$0"`
    # Variable should point to the folder two levels above glsl_test
    abs_builddir=`pwd`/../../
fi

total=0
pass=0

echo "======       Generating tests      ======"
for dir in tests/*/; do
    if [ -e "${dir}create_test_cases.py" ]; then
        cd $dir; $PYTHON2 create_test_cases.py; cd ..
    fi
    echo "$dir"
done

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