This repository has been archived on 2022-05-21. You can view files and clone it, but cannot push or open issues or pull requests.
shapes-juke/thirdparty/dast/test/all.sh

16 lines
241 B
Bash
Raw Normal View History

#!/bin/sh
if [ ! -d ".git" ]; then
echo "plz run at root of this repository"
exit 1
fi
function test() {
result=`$1 "$2"`
if [ "$result" != "$3" ]; then
echo "\`$1 \"$2\"\` != \`$3\`"
fi
}
test ./test/math.d "1+2-3*4/5" "1"