summaryrefslogtreecommitdiff
path: root/tests/scripts/arm32_ci_script.sh
diff options
context:
space:
mode:
authorJiyoung Yun <jy910.yun@samsung.com>2017-02-10 20:35:12 +0900
committerJiyoung Yun <jy910.yun@samsung.com>2017-02-10 20:35:12 +0900
commit4b11dc566a5bbfa1378d6266525c281b028abcc8 (patch)
treeb48831a898906734f8884d08b6e18f1144ee2b82 /tests/scripts/arm32_ci_script.sh
parentdb20f3f1bb8595633a7e16c8900fd401a453a6b5 (diff)
downloadcoreclr-4b11dc566a5bbfa1378d6266525c281b028abcc8.tar.gz
coreclr-4b11dc566a5bbfa1378d6266525c281b028abcc8.tar.bz2
coreclr-4b11dc566a5bbfa1378d6266525c281b028abcc8.zip
Imported Upstream version 1.0.0.9910upstream/1.0.0.9910
Diffstat (limited to 'tests/scripts/arm32_ci_script.sh')
-rwxr-xr-xtests/scripts/arm32_ci_script.sh11
1 files changed, 3 insertions, 8 deletions
diff --git a/tests/scripts/arm32_ci_script.sh b/tests/scripts/arm32_ci_script.sh
index 85ee4d21f5..6745e63145 100755
--- a/tests/scripts/arm32_ci_script.sh
+++ b/tests/scripts/arm32_ci_script.sh
@@ -17,8 +17,8 @@ function usage {
echo ' --mountPath=/opt/linux-arm-emulator-root'
echo ' --buildConfig=Release'
echo ' --testRootDir=~/Downloads/Windows_NT.x64.Release'
- echo ' --mscorlibDir=~/clr/bin/Product/Linux.arm-softfp.Release'
- echo ' --coreFxNativeBinDir=~/cfx/bin/Linux.arm-softfp.Release'
+ echo ' --mscorlibDir=~/clr/bin/Product/Linux.armel.Release'
+ echo ' --coreFxNativeBinDir=~/cfx/bin/Linux.armel.Release'
echo ' --coreFxBinDir="~/cfx/bin/Linux.AnyCPU.Release;~/cfx/bin/Unix.AnyCPU.Release;~/cfx/bin/AnyOS.AnyCPU.Release"'
echo ' --testDirFile=~/clr/tests/testsRunningInsideARM.txt'
echo ''
@@ -213,10 +213,6 @@ function cross_build_coreclr {
(set +x; echo 'Exporting LINUX_ARM_* environment variable')
source "$__ARMEmulRootfs"/dotnet/setenv/setenv_incpath.sh "$__ARMEmulRootfs"
- #Apply the changes needed to build for the emulator rootfs
- (set +x; echo 'Applying cross build patch to suit Linux ARM emulator rootfs')
- git am < "$__ARMEmulRootfs"/dotnet/setenv/coreclr_cross.patch
-
#Apply release optimization patch if needed
if [[ "$__buildConfig" == "Release" ]]; then
(set +x; echo 'Applying release optimization patch to build in Release mode')
@@ -228,7 +224,6 @@ function cross_build_coreclr {
#Reset the code to the upstream version
(set +x; echo 'Rewinding HEAD to master code')
- git reset --hard HEAD^
if [[ "$__buildConfig" == "Release" ]]; then
git reset --hard HEAD^
fi
@@ -316,7 +311,7 @@ __coreFxBinDir=
__testDirFile=
__verboseFlag=
__buildOS="Linux"
-__buildArch="arm-softfp"
+__buildArch="armel"
__buildDirName=
__initialGitHead=`git rev-parse --verify HEAD`