aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/test/shell
diff options
context:
space:
mode:
authorGravatar Arielle Albon <arielle@hopeless-newbie.co.uk>2018-06-28 09:29:34 -0700
committerGravatar Copybara-Service <copybara-piper@google.com>2018-06-28 09:30:38 -0700
commit178e6cc5dd31a8b9748f9263eea6bcba5f2c7f31 (patch)
treef67018bb73a84a2900146e881fa93ac66490dab1 /src/test/shell
parent3fc2880f9662f35a5e47b1e76eb383c8321d09ed (diff)
Fix up some tests for Arm64
This is the first PR for my Arm64 test cleanup. Closes #5457. PiperOrigin-RevId: 202492291
Diffstat (limited to 'src/test/shell')
-rwxr-xr-xsrc/test/shell/testenv.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/test/shell/testenv.sh b/src/test/shell/testenv.sh
index 1f31aac38f..c490172a3d 100755
--- a/src/test/shell/testenv.sh
+++ b/src/test/shell/testenv.sh
@@ -105,7 +105,7 @@ python_server="${BAZEL_RUNFILES}/src/test/shell/bazel/testing_server.py"
# Third-party
MACHINE_TYPE="$(uname -m)"
MACHINE_IS_64BIT='no'
-if [ "${MACHINE_TYPE}" = 'amd64' ] || [ "${MACHINE_TYPE}" = 'x86_64' ] || [ "${MACHINE_TYPE}" = 's390x' ]; then
+if [ "${MACHINE_TYPE}" = 'amd64' ] || [ "${MACHINE_TYPE}" = 'x86_64' ] || [ "${MACHINE_TYPE}" = 's390x' ] || [ "${MACHINE_TYPE}" = 'aarch64' ]; then
MACHINE_IS_64BIT='yes'
fi