From 86684b68935e2e8cbbecd4f4dd316714248953c6 Mon Sep 17 00:00:00 2001 From: James Groom Date: Tue, 13 Feb 2024 06:28:15 +1000 Subject: [PATCH] Use long flag for `dotnet test -a` since it changes in .NET 7 --- Dist/.BuildTestInConfigX.sh | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/Dist/.BuildTestInConfigX.sh b/Dist/.BuildTestInConfigX.sh index 41f081ade9..c441597e8a 100755 --- a/Dist/.BuildTestInConfigX.sh +++ b/Dist/.BuildTestInConfigX.sh @@ -5,4 +5,7 @@ if [ ! -e "BizHawk.sln" ]; then fi config="$1" shift -Dist/.InvokeCLIOnMainSln.sh "test" "$config" -a . -l "junit;LogFilePath=$PWD/test_output/{assembly}.coverage.xml;MethodFormat=Class;FailureBodyFormat=Verbose" "$@" +Dist/.InvokeCLIOnMainSln.sh "test" "$config" \ + -l "junit;LogFilePath=$PWD/test_output/{assembly}.coverage.xml;MethodFormat=Class;FailureBodyFormat=Verbose" \ + --test-adapter-path . \ + "$@"