Skip to content
This repository was archived by the owner on Jan 23, 2023. It is now read-only.

Commit c7f67e7

Browse files
hqueuestephentoub
authored andcommitted
Enable --arch option in run-test.sh (#24300)
There is a help message for --arch option, but there is no code for the option. Signed-off-by: Hyung-Kyu Choi <hk0110.choi@samsung.com>
1 parent 4f29411 commit c7f67e7

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

run-test.sh

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ usage()
3131
echo " default: Debug"
3232
echo " --os <os> OS to run (FreeBSD, Linux, NetBSD or OSX)"
3333
echo " default: detect current OS"
34-
echo " --arch <Architecture> Architecture to run (x64, arm, x86, arm64)"
34+
echo " --arch <Architecture> Architecture to run (x64, arm, armel, x86, arm64)"
3535
echo " default: detect current architecture"
3636
echo
3737
echo "Execution options:"
@@ -304,6 +304,9 @@ do
304304
--os)
305305
OS=$2
306306
;;
307+
--arch)
308+
__Arch=$2
309+
;;
307310
--coreclr-coverage)
308311
CoreClrCoverage=ON
309312
;;

0 commit comments

Comments
 (0)