summaryrefslogtreecommitdiff
path: root/automated/lib/sh-test-lib
diff options
context:
space:
mode:
authorDan Rue <dan.rue@linaro.org>2018-01-04 11:59:02 -0600
committerMilosz Wasilewski <milosz.wasilewski@linaro.org>2018-01-17 11:14:55 +0000
commit552c9f594d13b84a6aa32a6ba8e90abd15bf1fb9 (patch)
treef8b58dfec8ee491d0fd691b90790850b35c502b7 /automated/lib/sh-test-lib
parent941322ed38071cebd6e9df766a0ed4b580176f9e (diff)
skipgen: Import Skiplist Generator 0.2.0
Import skipgen 0.2.0 binaries from https://github.com/Linaro/skipgen. Skiplist Generator (skipgen) is a program that will generate a skiplist given a yaml file and optionally a board name, branch name, and environment name. Change x86 to x86_64 in detect_abi() to distinguish between 32 and 64 bit x86. Change-Id: I95c01c35dd264026860ad4525194346a9800899a Signed-off-by: Dan Rue <dan.rue@linaro.org>
Diffstat (limited to 'automated/lib/sh-test-lib')
-rwxr-xr-xautomated/lib/sh-test-lib2
1 files changed, 1 insertions, 1 deletions
diff --git a/automated/lib/sh-test-lib b/automated/lib/sh-test-lib
index 91f6aef..c4e4591 100755
--- a/automated/lib/sh-test-lib
+++ b/automated/lib/sh-test-lib
@@ -157,7 +157,7 @@ detect_abi() {
case "${abi}" in
armv7|armv7l|armv7el|armv7lh) abi="armeabi" ;;
arm64|armv8|arm64-v8a|aarch64) abi="arm64" ;;
- x86_64) abi="x86" ;;
+ x86_64) abi="x86_64" ;;
*) error_msg "Unsupported architecture: ${abi}" ;;
esac
}