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 <chase.qi@linaro.org>
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}"