Research portable Memory game | Исследовать портируемую игру Память
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
- #!/bin/bash
-
- echo "MinGW test script starting"
-
- for f in test*.exe
- do
- t=`echo $f | sed s/.exe//`
- "./$f" > "$t.out"
- diff -qb "$t.out" "$t.ans"
- if [ $? -eq 1 ]
- then
- echo "$f failed"
- else
- true # can't have empty else
- #echo "$f passed"
- fi
- done
-
- echo
- echo "All tests complete"
|