summaryrefslogtreecommitdiff
path: root/tsp/jobs/common_prep_flash_conf.sh
diff options
context:
space:
mode:
Diffstat (limited to 'tsp/jobs/common_prep_flash_conf.sh')
-rwxr-xr-xtsp/jobs/common_prep_flash_conf.sh9
1 files changed, 9 insertions, 0 deletions
diff --git a/tsp/jobs/common_prep_flash_conf.sh b/tsp/jobs/common_prep_flash_conf.sh
index 01e5c44..79f8e59 100755
--- a/tsp/jobs/common_prep_flash_conf.sh
+++ b/tsp/jobs/common_prep_flash_conf.sh
@@ -108,6 +108,14 @@ cp "${ORG_MULTIPLEX_FILE}" "${MULTIPLEX_FILE}"
# Copy multiplex file used by avocado
cp "${MULTIPLEX_FILE}" "${WORKDIR_REMOTE}/" || retrigger "copy failed"
+SMOKE_FILE="test.conf"
+ORG_SMOKE_FILE="${TSP_DIR}/test.conf"
+test -f "${ORG_SMOKE_FILE}" || ORG_SMOKE_FILE="${TSP_DIR}/test.conf.example"
+cp "${ORG_SMOKE_FILE}" "${SMOKE_FILE}"
+
+# Copy test.conf file used by go-smoke
+cp "${SMOKE_FILE}" "${WORKDIR_REMOTE}/" || retrigger "copy failed"
+
echo "start remote script"
WORKDIR_REMOTE="${WORKDIR_REMOTE}" TARGET="${TARGET}" timeout 10m sh "${TSP_DIR}/scripts/common_prep_flash_conf.sh" \
|| retrigger "script execution failed"
@@ -115,6 +123,7 @@ echo "finish remote script"
# Copy the results
cp "${WORKDIR_REMOTE}/sysctl.result" "${WORKDIR_REMOTE}/screenshot.png" .
+cp "${WORKDIR_REMOTE}/smoke.png" "${WORKDIR_REMOTE}/smoke.json" .
cp -r "${WORKDIR_REMOTE}/avocado-results" .
{