BizHawk/Dist/.BuildTestInConfigX.sh

12 lines
307 B
Bash
Raw Normal View History

#!/bin/sh
if [ ! -e "BizHawk.sln" ]; then
printf "wrong cwd (ran manually)? exiting\n"
exit 1
fi
config="$1"
shift
Dist/.InvokeCLIOnMainSln.sh "test" "$config" \
-l "junit;LogFilePath=$PWD/test_output/{assembly}.coverage.xml;MethodFormat=Class;FailureBodyFormat=Verbose" \
--test-adapter-path . \
"$@"