kit-programmieren-ws1920-fi.../fuzz.sh

17 lines
397 B
Bash
Raw Normal View History

2020-03-07 09:24:51 +00:00
while true; do
rm /tmp/input$$-*
radamsa -o /tmp/input$$-%n -n 100 ~/Documents/KIT/2019/Prog/final2/*input.txt
for filename in /tmp/input$$-*; do
echo "exit" >> $filename
2020-03-11 09:51:45 +00:00
java -cp out/production/final2/ -Xshare:on edu.kit.informatik.Main < $filename
2020-03-07 09:24:51 +00:00
if [ $? -eq 0 ]; then
echo OK
else
echo $filename
#notify-send -t 20000 FAIL
#break 2
cp $filename fails
fi
done
done