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:
authorHyung-Kyu Choi <hk0110.choi@samsung.com>2017-09-11 16:45:42 +0300
committerHyung-Kyu Choi <hk0110.choi@samsung.com>2017-09-11 16:49:03 +0300
commit74f45cb7ff4401b036aca7c7966c5e8ddeb86c08 (patch)
tree570391cd588f4f5fc51ed6f5d79400b6535bde2c /run-test.sh
parent6ad6bce5f9fd1f2d98ea30a049bdfcee3f4d0ed3 (diff)
Update run-test.sh to follow up recent change
Because layout of CoreFX test has been changed, run-test.sh should be updated too. Signed-off-by: Hyung-Kyu Choi <hk0110.choi@samsung.com>
Diffstat (limited to 'run-test.sh')
-rwxr-xr-xrun-test.sh7
1 files changed, 2 insertions, 5 deletions
diff --git a/run-test.sh b/run-test.sh
index 3610d10091..88c1116960 100755
--- a/run-test.sh
+++ b/run-test.sh
@@ -197,8 +197,7 @@ run_test()
exit 0
fi
- dirName="$1/netcoreapp"
-
+ dirName="$1/netcoreapp-$OS-$ConfigurationGroup-$__Arch"
if [ ! -d "$dirName" ]; then
dirName="$1/netstandard"
if [ ! -d "$dirName" ]; then
@@ -397,9 +396,7 @@ if [ -n "$TestDirFile" ] || [ -n "$TestDir" ]
then
run_selected_tests
else
- run_all_tests "$CoreFxTests/AnyOS.AnyCPU.$ConfigurationGroup/"*.Tests
- run_all_tests "$CoreFxTests/Unix.AnyCPU.$ConfigurationGroup/"*.Tests
- run_all_tests "$CoreFxTests/$OS.AnyCPU.$ConfigurationGroup/"*.Tests
+ run_all_tests "$CoreFxTests/tests/"*.Tests
fi
if [ "$CoreClrCoverage" == "ON" ]