Skip to content
This repository was archived by the owner on Jan 23, 2023. It is now read-only.
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 6 additions & 6 deletions run-test.sh
Original file line number Diff line number Diff line change
Expand Up @@ -48,8 +48,8 @@ usage()
echo " specified by --corefx-tests"
echo " --test-dir-file <path> Run tests only in the directories specified by the file at <path>. Paths are"
echo " listed one line, relative to the directory specified by --corefx-tests"
echo " --testTFM <project> Set TestTFM to run"
echo " default: netcoreapp1.1"
echo " --testRelPath <project> Set tests relative path from project name"
echo " default: default.netcoreapp1.1/netcoreapp1.1"
echo
echo "Runtime Code Coverage options:"
echo " --coreclr-coverage Optional argument to get coreclr code coverage reports"
Expand Down Expand Up @@ -106,7 +106,7 @@ TestSelection=".*"
TestsFailed=0

# TestTFM default
TestTFM="netcoreapp1.1"
TestRelPath="default.netcoreapp1.1/netcoreapp1.1"

ensure_binaries_are_present()
{
Expand Down Expand Up @@ -219,7 +219,7 @@ run_test()
exit 0
fi

dirName="$1/$TestTFM"
dirName="$1/$TestRelPath"
copy_test_overlay $dirName

pushd $dirName > /dev/null
Expand Down Expand Up @@ -351,8 +351,8 @@ do
--test-dir-file)
TestDirFile=$2
;;
--testTFM)
TestTFM=$2
--testRelPath)
TestRelPath=$2
;;
--outerloop)
OuterLoop=""
Expand Down