mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-01-01 07:30:09 +01:00
10 lines
207 B
Text
10 lines
207 B
Text
|
|
#!/bin/sh
|
||
|
|
|
||
|
|
for test in *.c; do
|
||
|
|
echo "Testing $test"
|
||
|
|
../glcpp < $test > $test.out
|
||
|
|
gcc -E $test -o $test.gcc
|
||
|
|
grep -v '^#' < $test.gcc > $test.expected
|
||
|
|
diff -u $test.expected $test.out
|
||
|
|
done
|