From bf5a466a03f53be66252dc41849807fe176c7f22 Mon Sep 17 00:00:00 2001 From: Bryan Thornbury Date: Fri, 5 Feb 2016 15:38:18 -0800 Subject: [PATCH] fix slash in run_tests --- scripts/test/run-tests.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/test/run-tests.sh b/scripts/test/run-tests.sh index f5716017c..2f5d92fc7 100755 --- a/scripts/test/run-tests.sh +++ b/scripts/test/run-tests.sh @@ -33,7 +33,7 @@ for project in $TestProjects do # This is a workaroudn for issue #1184, where dotnet test needs to be executed from the folder containing the project.json. pushd "$REPOROOT/test/$project" - dotnet test -c "$CONFIGURATION" -xml "$TEST_BIN_ROOT\$project-testResults.xml" -notrait category=failing + dotnet test -c "$CONFIGURATION" -xml "$TEST_BIN_ROOT/${project}-testResults.xml" -notrait category=failing popd exitCode=$?