Skip to content

Commit

Permalink
.travis.sh: skip test for arm64, mainly extending gcstack -> Segfault
Browse files Browse the repository at this point in the history
  • Loading branch information
k-okada committed Jun 24, 2023
1 parent cc27374 commit efb1f01
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion .travis.sh
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@ if [ "$TRAVIS_OS_NAME" == "osx" ]; then
fi

### for multiarch compile test
if [[ "$QEMU" != "" && "$DOCKER_IMAGE" != "arm64v8/ubuntu:"* ]]; then
if [[ "$QEMU" != "" ]]; then
travis_time_start install.dpkg-dev
apt-get install -qq -y dpkg-dev patchutils
travis_time_end
Expand Down Expand Up @@ -128,6 +128,9 @@ if [[ "$QEMU" != "" && "$DOCKER_IMAGE" != "arm64v8/ubuntu:"* ]]; then

sed -i 's/\(i-max\ [0-9]000\)0*/\1/' $test_l

# TEST-NAME: test-copy-object-body : extending gcstack 0 -> Segfault
if [[ ( "$DOCKER_IMAGE" == "arm64v8/debian:buster" && $test_l =~ object.l ) ]]; then sed -i 's/dotimes (i 1000)/dotimes (i 10)/' $test_l; fi

eusgl $test_l;
export TMP_EXIT_STATUS=$?

Expand Down

0 comments on commit efb1f01

Please sign in to comment.