Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mono/corefx.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorHyeongseok Oh <hseok82.oh@samasung.com>2016-11-01 05:20:36 +0300
committerHyeongseok Oh <hseok82.oh@samasung.com>2016-11-01 05:20:36 +0300
commitd00af2da4d3ca7fbc0605dd7c7d2789c80af674a (patch)
tree5fd5d46429e66c6008516336114ae33e066054e9 /run-test.sh
parent44157d9e20b6053c6e015d378de5597020d030e4 (diff)
run-test.sh: change default value of testRelPath
Diffstat (limited to 'run-test.sh')
-rwxr-xr-xrun-test.sh9
1 files changed, 5 insertions, 4 deletions
diff --git a/run-test.sh b/run-test.sh
index bfa6f010a2..cd471a4434 100755
--- a/run-test.sh
+++ b/run-test.sh
@@ -32,6 +32,9 @@ usage()
echo " default: <repo_root>/bin/<OS>.x64.<ConfigurationGroup>"
echo " --corefx-packages <location> Location of the packages restored from NuGet."
echo " default: <repo_root>/packages"
+ echo " --testRelPath <path> Relative path to test script"
+ echo " Path is relative from the directory specified by project name"
+ echo " default: default.netcoreapp1.1"
echo
echo "Flavor/OS options:"
echo " --configurationGroup <config> ConfigurationGroup to run (Debug/Release)"
@@ -48,8 +51,6 @@ 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 " --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"
@@ -105,8 +106,8 @@ esac
TestSelection=".*"
TestsFailed=0
-# TestTFM default
-TestRelPath="default.netcoreapp1.1/netcoreapp1.1"
+# TestRelPath default
+TestRelPath="default.netcoreapp1.1"
ensure_binaries_are_present()
{