mirror of
https://gitlab.com/manzerbredes/esds.git
synced 2025-04-06 01:56:27 +02:00
Use only commands from coreutils
This commit is contained in:
parent
c63ae59a81
commit
f85805f901
1 changed files with 2 additions and 2 deletions
|
@ -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
|
||||
|
|
Loading…
Add table
Reference in a new issue