From 09edc7f6fcaf627eee88ab4447c749c55ee2100c Mon Sep 17 00:00:00 2001 From: Chase Qi Date: Thu, 18 Aug 2016 13:18:50 +0800 Subject: v2: initial commit - Added utils, bin, and lib folders and related tools - Added Linux smoke test case as an example - Added test plan example that used to test test-runner Change-Id: I73693108db219cb67afc99525d80cab93f1eb9ea Signed-off-by: Chase Qi --- automated/bin/arm64/busybox | Bin 0 -> 1914688 bytes automated/bin/armeabi/busybox | Bin 0 -> 1356332 bytes automated/bin/setenv.sh | 13 +++++++++++++ automated/bin/test-runner | 1 + 4 files changed, 14 insertions(+) create mode 100755 automated/bin/arm64/busybox create mode 100755 automated/bin/armeabi/busybox create mode 100755 automated/bin/setenv.sh create mode 120000 automated/bin/test-runner (limited to 'automated/bin') diff --git a/automated/bin/arm64/busybox b/automated/bin/arm64/busybox new file mode 100755 index 0000000..6d09a07 Binary files /dev/null and b/automated/bin/arm64/busybox differ diff --git a/automated/bin/armeabi/busybox b/automated/bin/armeabi/busybox new file mode 100755 index 0000000..cebf6cf Binary files /dev/null and b/automated/bin/armeabi/busybox differ diff --git a/automated/bin/setenv.sh b/automated/bin/setenv.sh new file mode 100755 index 0000000..c0a3f79 --- /dev/null +++ b/automated/bin/setenv.sh @@ -0,0 +1,13 @@ +#!/bin/sh + +export REPO_PATH="$(pwd)" +echo "REPO_PATH: ${REPO_PATH}" + +if ! [ -d "${REPO_PATH}/automated/bin" ]; then + echo "ERROR: Please execute the below command from test-definitions DIR" + echo " . ./automated/bin/setenv.sh" + exit 1 +fi + +export PATH="${REPO_PATH}/automated/bin":"${PATH}" +echo "BIN_PATH: ${PATH}" diff --git a/automated/bin/test-runner b/automated/bin/test-runner new file mode 120000 index 0000000..0e7f8bc --- /dev/null +++ b/automated/bin/test-runner @@ -0,0 +1 @@ +../utils/test-runner.py \ No newline at end of file -- cgit v1.2.3