mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2025-12-21 22:20:14 +01:00
7 lines
131 B
Bash
Executable file
7 lines
131 B
Bash
Executable file
#!/bin/sh
|
|
|
|
for test in *.c; do
|
|
echo "Testing $test"
|
|
../glcpp < $test > $test.out
|
|
diff -u $test.expected $test.out
|
|
done
|