public/sh/tests/cl-camp8_test.sh

14 lines
213 B
Bash
Raw Permalink Normal View History

2020-04-02 10:01:44 +00:00
#!/usr/bin/env bash
# Unofficial Bash Strict Mode
set -euo pipefail
IFS='
'
cd cl-camp8
submitted=$(bash ../student/skip.sh)
expected=$(bash ../solutions/skip.sh)
2020-04-02 10:01:44 +00:00
diff <(echo "$submitted") <(echo "$expected")