summaryrefslogtreecommitdiff
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
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>
-rwxr-xr-xautomated/bin/arm64/skipgenbin0 -> 654760 bytes
-rwxr-xr-xautomated/bin/armeabi/skipgenbin0 -> 659156 bytes
-rwxr-xr-xautomated/bin/x86_64/skipgenbin0 -> 705408 bytes
-rwxr-xr-xautomated/lib/sh-test-lib2
-rwxr-xr-xautomated/linux/iozone/iozone.sh2
5 files changed, 2 insertions, 2 deletions
diff --git a/automated/bin/arm64/skipgen b/automated/bin/arm64/skipgen
new file mode 100755
index 0000000..3ab36f8
--- /dev/null
+++ b/automated/bin/arm64/skipgen
Binary files differ
diff --git a/automated/bin/armeabi/skipgen b/automated/bin/armeabi/skipgen
new file mode 100755
index 0000000..4d11c8e
--- /dev/null
+++ b/automated/bin/armeabi/skipgen
Binary files differ
diff --git a/automated/bin/x86_64/skipgen b/automated/bin/x86_64/skipgen
new file mode 100755
index 0000000..05cbad4
--- /dev/null
+++ b/automated/bin/x86_64/skipgen
Binary files 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