Use only commands from coreutils

This commit is contained in:
Loic Guegan 2022-08-31 17:50:22 +02:00
parent c63ae59a81
commit f85805f901

View file

@ -7,7 +7,7 @@ BOLD='\033[1m'
NC='\033[0m' # No Color
wai=$(dirname $(readlink -f "$0")) # Current script directory
tests=$(find ${wai}/ -maxdepth 1 -mindepth 1 -type d) # Find tests
tests=$(ls -d ./*/) # Find tests
out=$(mktemp)
test_timeout=20
abort=1
@ -29,7 +29,7 @@ do
fi
# Ensure test output
if $(diff "$out" ./out &>/dev/null)
if [ "$(base64 $out)" == "$(base64 ./out)" ]
then
echo -e "${GREEN}${BOLD}passed${NC}"
else