8 lines
148 B
Bash
Executable File
8 lines
148 B
Bash
Executable File
#!/bin/bash
|
|
set -e
|
|
basedir="build/output"
|
|
for kase in `ls $basedir`
|
|
do
|
|
echo "$basedir/$kase"
|
|
diff $basedir/$kase/my.out $basedir/$kase/llir.out
|
|
done |