Merge pull request #1260 from dotnet/brthor/try_fix_testresults

fix slash in run_tests
This commit is contained in:
Bryan Thornbury 2016-02-05 15:56:03 -08:00
commit 85fbe52da3

View file

@ -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=$?