8 lines
131 B
Bash
Executable File
8 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
|