summaryrefslogtreecommitdiff
path: root/tests/scripts
diff options
context:
space:
mode:
authorJan Kotas <jkotas@microsoft.com>2016-11-03 20:35:35 -0700
committerGitHub <noreply@github.com>2016-11-03 20:35:35 -0700
commit31c988c1a217048f706df702793ebd2100c169a2 (patch)
treec2fea89c971975a36eca9431f196fc3a06953e66 /tests/scripts
parent4822563366cec72e3e269e56a14a15bb238ba8b2 (diff)
downloadcoreclr-31c988c1a217048f706df702793ebd2100c169a2.tar.gz
coreclr-31c988c1a217048f706df702793ebd2100c169a2.tar.bz2
coreclr-31c988c1a217048f706df702793ebd2100c169a2.zip
Revert "ARM-CI : Use archived root-fs and run tests with --sequential option"
Diffstat (limited to 'tests/scripts')
-rwxr-xr-xtests/scripts/arm32_ci_script.sh53
1 files changed, 18 insertions, 35 deletions
diff --git a/tests/scripts/arm32_ci_script.sh b/tests/scripts/arm32_ci_script.sh
index c0b4e7cad0..1b016bbd8f 100755
--- a/tests/scripts/arm32_ci_script.sh
+++ b/tests/scripts/arm32_ci_script.sh
@@ -169,56 +169,41 @@ function mount_with_checking {
#Mount emulator to the target mount path
function mount_emulator {
#Check if the mount path exists and create if neccessary
- set +x
-
if [ ! -d "$__ARMRootfsMountPath" ]; then
sudo mkdir "$__ARMRootfsMountPath"
fi
- if [ ! -d "$__ARMEmulRootfs" ]; then
- sudo mkdir "$__ARMEmulRootfs"
- fi
-
- if [ ! -f "$__ARMEmulRootfs/arm-emulator-rootfs.tar" ]; then
- if ! mountpoint -q -- "$__ARMRootfsMountPath"; then
- mount_with_checking "" "$__ARMEmulPath/platform/rootfs-t30.ext4" "$__ARMRootfsMountPath"
- fi
- cd $__ARMRootfsMountPath
- sudo tar -cf "$__ARMEmulRootfs/arm-emulator-rootfs.tar" *
- cd -
- fi
-
- sudo tar -xf "$__ARMEmulRootfs/arm-emulator-rootfs.tar" -C "$__ARMEmulRootfs"
-
- mount_with_checking "-t proc" "/proc" "$__ARMEmulRootfs/proc"
- mount_with_checking "-o bind" "/dev/" "$__ARMEmulRootfs/dev"
- mount_with_checking "-o bind" "/dev/pts" "$__ARMEmulRootfs/dev/pts"
- mount_with_checking "-t tmpfs" "shm" "$__ARMEmulRootfs/run/shm"
- mount_with_checking "-o bind" "/sys" "$__ARMEmulRootfs/sys"
- if [ ! -d "$__ARMEmulRootfs/bindings/tmp" ]; then
- sudo mkdir -p "$__ARMEmulRootfs/bindings/tmp"
+ set +x
+ mount_with_checking "" "$__ARMEmulPath/platform/rootfs-t30.ext4" "$__ARMRootfsMountPath"
+ mount_with_checking "-t proc" "/proc" "$__ARMRootfsMountPath/proc"
+ mount_with_checking "-o bind" "/dev/" "$__ARMRootfsMountPath/dev"
+ mount_with_checking "-o bind" "/dev/pts" "$__ARMRootfsMountPath/dev/pts"
+ mount_with_checking "-t tmpfs" "shm" "$__ARMRootfsMountPath/run/shm"
+ mount_with_checking "-o bind" "/sys" "$__ARMRootfsMountPath/sys"
+ if [ ! -d "$__ARMRootfsMountPath/bindings/tmp" ]; then
+ sudo mkdir -p "$__ARMRootfsMountPath/bindings/tmp"
fi
- mount_with_checking "-o bind" "/mnt" "$__ARMEmulRootfs/bindings/tmp"
+ mount_with_checking "-o bind" "/mnt" "$__ARMRootfsMountPath/bindings/tmp"
}
#Cross builds coreclr
function cross_build_coreclr {
#Export the needed environment variables
(set +x; echo 'Exporting LINUX_ARM_* environment variable')
- source "$__ARMEmulRootfs"/dotnet/setenv/setenv_incpath.sh "$__ARMEmulRootfs"
+ source "$__ARMRootfsMountPath"/dotnet/setenv/setenv_incpath.sh "$__ARMRootfsMountPath"
#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
+ git am < "$__ARMRootfsMountPath"/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')
- git am < "$__ARMEmulRootfs"/dotnet/setenv/coreclr_release.patch
+ git am < "$__ARMRootfsMountPath"/dotnet/setenv/coreclr_release.patch
fi
#Cross building for emulator rootfs
- ROOTFS_DIR="$__ARMEmulRootfs" CPLUS_INCLUDE_PATH=$LINUX_ARM_INCPATH CXXFLAGS=$LINUX_ARM_CXXFLAGS ./build.sh $__buildArch cross $__verboseFlag $__skipMscorlib clang3.5 $__buildConfig -rebuild
+ ROOTFS_DIR="$__ARMRootfsMountPath" CPLUS_INCLUDE_PATH=$LINUX_ARM_INCPATH CXXFLAGS=$LINUX_ARM_CXXFLAGS ./build.sh $__buildArch cross $__verboseFlag $__skipMscorlib clang3.5 $__buildConfig -rebuild
#Reset the code to the upstream version
(set +x; echo 'Rewinding HEAD to master code')
@@ -283,10 +268,9 @@ function copy_to_emulator {
#Runs tests in an emulated mode
function run_tests {
- sudo chroot $__ARMEmulRootfs /bin/bash -x <<EOF
+ sudo chroot $__ARMRootfsMountPath /bin/bash -x <<EOF
cd "$__ARMEmulCoreclr"
- ./tests/runtest.sh --sequential\
- --testRootDir=$__testRootDirBase \
+ ./tests/runtest.sh --testRootDir=$__testRootDirBase \
--mscorlibDir=$__mscorlibDirBase \
--coreFxNativeBinDir=$__coreFxNativeBinDirBase \
--coreFxBinDir="$__coreFxBinDirBase" \
@@ -297,7 +281,6 @@ EOF
}
#Define script variables
-__ARMEmulRootfs=/opt/arm-emulator-rootfs
__ARMEmulPath=
__ARMRootfsMountPath=
__buildConfig=
@@ -419,8 +402,8 @@ if [ ! -d "$__TempFolder" ]; then
mkdir "$__TempFolder"
fi
-__ARMRootfsCoreclrPath="$__ARMEmulRootfs/$__TempFolder/coreclr"
-__ARMRootfsCorefxPath="$__ARMEmulRootfs/$__TempFolder/corefx"
+__ARMRootfsCoreclrPath="$__ARMRootfsMountPath/$__TempFolder/coreclr"
+__ARMRootfsCorefxPath="$__ARMRootfsMountPath/$__TempFolder/corefx"
__ARMEmulCoreclr="/$__TempFolder/coreclr"
__ARMEmulCorefx="/$__TempFolder/corefx"
__testRootDirBase=