From 552c9f594d13b84a6aa32a6ba8e90abd15bf1fb9 Mon Sep 17 00:00:00 2001 From: Dan Rue Date: Thu, 4 Jan 2018 11:59:02 -0600 Subject: 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 --- automated/bin/arm64/skipgen | Bin 0 -> 654760 bytes automated/bin/armeabi/skipgen | Bin 0 -> 659156 bytes automated/bin/x86_64/skipgen | Bin 0 -> 705408 bytes automated/lib/sh-test-lib | 2 +- automated/linux/iozone/iozone.sh | 2 +- 5 files changed, 2 insertions(+), 2 deletions(-) create mode 100755 automated/bin/arm64/skipgen create mode 100755 automated/bin/armeabi/skipgen create mode 100755 automated/bin/x86_64/skipgen (limited to 'automated') diff --git a/automated/bin/arm64/skipgen b/automated/bin/arm64/skipgen new file mode 100755 index 0000000..3ab36f8 Binary files /dev/null and b/automated/bin/arm64/skipgen differ diff --git a/automated/bin/armeabi/skipgen b/automated/bin/armeabi/skipgen new file mode 100755 index 0000000..4d11c8e Binary files /dev/null and b/automated/bin/armeabi/skipgen differ diff --git a/automated/bin/x86_64/skipgen b/automated/bin/x86_64/skipgen new file mode 100755 index 0000000..05cbad4 Binary files /dev/null and b/automated/bin/x86_64/skipgen differ 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 } diff --git a/automated/linux/iozone/iozone.sh b/automated/linux/iozone/iozone.sh index 3a80a9b..6c9c005 100755 --- a/automated/linux/iozone/iozone.sh +++ b/automated/linux/iozone/iozone.sh @@ -38,7 +38,7 @@ else detect_abi case "$abi" in armeabi|arm64) make linux-arm ;; - x86) make linux ;; + x86_64) make linux ;; *) warn_msg "Unsupported architecture" ;; esac export PATH=$PWD:$PATH -- cgit v1.2.3