From 904fe0f74294bf7f75e0771141f1b10f579d4ceb Mon Sep 17 00:00:00 2001 From: Hyeongseok Oh Date: Mon, 24 Oct 2016 17:49:21 +0900 Subject: [PATCH] Change '--testTFM' option to '--testRelPath' and default value in run-test.sh --- run-test.sh | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/run-test.sh b/run-test.sh index 54ab596042d4..bfa6f010a23a 100755 --- a/run-test.sh +++ b/run-test.sh @@ -48,8 +48,8 @@ usage() echo " specified by --corefx-tests" echo " --test-dir-file Run tests only in the directories specified by the file at . Paths are" echo " listed one line, relative to the directory specified by --corefx-tests" - echo " --testTFM Set TestTFM to run" - echo " default: netcoreapp1.1" + echo " --testRelPath 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" @@ -106,7 +106,7 @@ TestSelection=".*" TestsFailed=0 # TestTFM default -TestTFM="netcoreapp1.1" +TestRelPath="default.netcoreapp1.1/netcoreapp1.1" ensure_binaries_are_present() { @@ -219,7 +219,7 @@ run_test() exit 0 fi - dirName="$1/$TestTFM" + dirName="$1/$TestRelPath" copy_test_overlay $dirName pushd $dirName > /dev/null @@ -351,8 +351,8 @@ do --test-dir-file) TestDirFile=$2 ;; - --testTFM) - TestTFM=$2 + --testRelPath) + TestRelPath=$2 ;; --outerloop) OuterLoop=""