summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rwxr-xr-xtct/artik_prepare_flash_conf.sh1
-rwxr-xr-xtct/odroid_prepare_flash_conf.sh1
-rwxr-xr-xtct/rpi3_prepare_flash_conf.sh1
3 files changed, 3 insertions, 0 deletions
diff --git a/tct/artik_prepare_flash_conf.sh b/tct/artik_prepare_flash_conf.sh
index 2d74a8c..cc58eab 100755
--- a/tct/artik_prepare_flash_conf.sh
+++ b/tct/artik_prepare_flash_conf.sh
@@ -57,6 +57,7 @@ T_DIR="/tmpfs/${SDMUX}"
mkdir -p "${T_DIR}"
IMAGE_UNPACKED="${T_DIR}/unpacked"
+test -d "$IMAGE_UNPACKED" && rm -rf "$IMAGE_UNPACKED"
IMAGE_MOUNTPOINT="${T_DIR}/mounted"
TMP_TAR="/tmpfs/tizen-${SDMUX}.tar"
diff --git a/tct/odroid_prepare_flash_conf.sh b/tct/odroid_prepare_flash_conf.sh
index 2da5933..eb8cb11 100755
--- a/tct/odroid_prepare_flash_conf.sh
+++ b/tct/odroid_prepare_flash_conf.sh
@@ -40,6 +40,7 @@ test -n "${IMAGE}" || die "Missing argument: image!"
echo "### prepare ###"
IMAGE_UNPACKED="/tmpfs/image_unpacked_${SDMUX}"
+test -d "$IMAGE_UNPACKED" && rm -rf "$IMAGE_UNPACKED"
IMAGE_MOUNTPOINT="/tmpfs/image_mounted_${SDMUX}"
switch2testserver "${SDMUX}"
diff --git a/tct/rpi3_prepare_flash_conf.sh b/tct/rpi3_prepare_flash_conf.sh
index 5895229..09f14d5 100755
--- a/tct/rpi3_prepare_flash_conf.sh
+++ b/tct/rpi3_prepare_flash_conf.sh
@@ -39,6 +39,7 @@ test -n "${IMAGE}" || die "Missing argument: image!"
echo "### prepare ###"
IMAGE_UNPACKED="/tmpfs/image_unpacked_${SDMUX}"
+test -d "$IMAGE_UNPACKED" && rm -rf "$IMAGE_UNPACKED"
IMAGE_MOUNTPOINT="/tmpfs/image_mounted_${SDMUX}"
switch2testserver "${SDMUX}"