Cleanup, debug stmts, diff vars and obsolete compile options

This commit is contained in:
Olof hagsand 2022-06-23 12:36:17 +02:00
parent bdb516fec9
commit 33c77c8a09
4 changed files with 6 additions and 19 deletions

View file

@ -351,9 +351,7 @@ function err(){
fi
echo -e "\e[0m"
echo "Diff between Expected and Received:"
echo "$ret"| od -t c > $dir/clixon-ret
echo "$expect"| od -t c > $dir/clixon-expect
diff $dir/clixon-expect $dir/clixon-ret
diff <(echo "$ret"| od -t c) <(echo "$expect"| od -t c)
exit -1 #$testnr
}