mirror of https://github.com/01-edu/public.git
eslopfer
2 years ago
1 changed files with 21 additions and 0 deletions
@ -0,0 +1,21 @@
|
||||
#!/usr/bin/env bash |
||||
|
||||
set -euo pipefail |
||||
IFS=' |
||||
' |
||||
|
||||
script_dirS=$(cd -P "$(dirname "$BASH_SOURCE")" &>/dev/null && pwd) |
||||
|
||||
submitted=$(bash "$script_dirS"/student/plus.sh $1) |
||||
expected=$(bash "$script_dirS"/solutions/plus.sh $1) |
||||
|
||||
# check that test command was not used |
||||
grep -q "test" $1 |
||||
|
||||
if [ $? -eq 0 ] |
||||
then |
||||
echo "The 'test' command is not allowed in this exercise" |
||||
exit 1 |
||||
fi |
||||
|
||||
diff <(echo "$submitted") <(echo "$expected") |
Loading…
Reference in new issue