mirror of
https://gitlab.com/manzerbredes/esds.git
synced 2025-04-06 10:06:28 +02:00
Add OSX compatibility fot run.sh
This commit is contained in:
parent
7880df025f
commit
20dc0e79d4
1 changed files with 9 additions and 1 deletions
10
tests/run.sh
10
tests/run.sh
|
@ -10,6 +10,7 @@ abort=1
|
||||||
for test in ${tests}
|
for test in ${tests}
|
||||||
do
|
do
|
||||||
printf "%-50s%s %s" "- $(basename $test)" "=>"
|
printf "%-50s%s %s" "- $(basename $test)" "=>"
|
||||||
|
echo $test
|
||||||
cd $test
|
cd $test
|
||||||
testcmd="esds run platform.yaml"
|
testcmd="esds run platform.yaml"
|
||||||
timeout $test_timeout ${testcmd} &> "$out"
|
timeout $test_timeout ${testcmd} &> "$out"
|
||||||
|
@ -24,8 +25,15 @@ do
|
||||||
exit 2
|
exit 2
|
||||||
fi
|
fi
|
||||||
|
|
||||||
|
# Ensure OSX compatibility
|
||||||
|
case "$OSTYPE" in
|
||||||
|
darwin*) optbase="-i" ;;
|
||||||
|
*) optbase="" ;;
|
||||||
|
esac
|
||||||
|
|
||||||
# Ensure test output
|
# Ensure test output
|
||||||
if [ "$(base64 $out)" = "$(base64 ./out)" ]
|
|
||||||
|
if [ "$(base64 $optbase $out)" = "$(base64 $optbase ./out)" ]
|
||||||
then
|
then
|
||||||
echo "passed"
|
echo "passed"
|
||||||
else
|
else
|
||||||
|
|
Loading…
Add table
Reference in a new issue