summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorjang <jiseob.jang@samsung.com>2017-07-03 13:57:12 +0900
committerjang <jiseob.jang@samsung.com>2017-07-03 13:57:12 +0900
commit3faaeceb95d5616a540fe64eae25ba3b5ac9d3fd (patch)
tree8d8c893019d3eca5c5808e17e1779365a17e478c
parentc9edf7e9749b38861f10024c57b404590786031a (diff)
downloadcoreclr-3faaeceb95d5616a540fe64eae25ba3b5ac9d3fd.tar.gz
coreclr-3faaeceb95d5616a540fe64eae25ba3b5ac9d3fd.tar.bz2
coreclr-3faaeceb95d5616a540fe64eae25ba3b5ac9d3fd.zip
replace 'complus-options' to 'environment'.
Change-Id: I275009b589f68245eab047833acedc89aa660b6b Signed-off-by: jang <jiseob.jang@samsung.com>
-rwxr-xr-xrun.sh10
1 files changed, 5 insertions, 5 deletions
diff --git a/run.sh b/run.sh
index c252558273..b82fdaf767 100755
--- a/run.sh
+++ b/run.sh
@@ -7,14 +7,14 @@ usage()
echo "--prefix-dir - You can specify the prefix directory for performing the unittest"
echo " like /opt/usr/coreclr-tc"
echo " Default is '/opt/usr/coreclr-tc'."
- echo "--complus-options - You can specify the complus options for performing the unittest"
+ echo "--environment - You can specify the environment for performing the unittest"
echo "--test-set - You can specify the test set for performing the unittest"
exit 1
}
opt="-d"
clrdir=""
-complus_options=""
+environment=""
testset=""
for i in "$@"
@@ -34,8 +34,8 @@ do
--prefix-dir=*)
clrdir=${i#*=}
;;
- --complus-options=*)
- complus_options=${i#*=}
+ --environment=*)
+ environment=${i#*=}
;;
--test-set=*)
testset=${i#*=}
@@ -72,7 +72,7 @@ tcdir="$clrdir/Windows_NT.${tcarch}.Release"
overlaydir="$tcdir/Tests/coreoverlay"
sdb ${opt} shell "cd $clrdir && \
- $complus_options \
+ $environment \
$testset \
./runtest.sh --testRootDir=$tcdir \
--testNativeBinDir=/usr/share/dotnet.tizen/test \