diff options
author | Vratko Polak <vrpolak@cisco.com> | 2023-09-04 14:25:27 +0200 |
---|---|---|
committer | Vratko Polak <vrpolak@cisco.com> | 2023-09-04 14:25:27 +0200 |
commit | 7b69a30544de2813e3ea336beec7e1978385c69f (patch) | |
tree | 1ef011ad7eccd688fb7badff95ef6a7a531f5691 /resources | |
parent | 2c444586dad69f6d3976a72c9e50ef34c306d038 (diff) |
fix(bootstrap): move archives before cleanup
If cleanup fails, we still want to examine robot logs
for any hints of why a node may have stopped working properly.
Bootstrapt scripts for device tests are doing that already,
so this patch only edits the perf verify bootstrap script.
Change-Id: I8b8ad7bcbbbbc26874068efe1b20e8053f0d5650
Signed-off-by: Vratko Polak <vrpolak@cisco.com>
Diffstat (limited to 'resources')
-rwxr-xr-x | resources/libraries/bash/entry/bootstrap_verify_perf.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/resources/libraries/bash/entry/bootstrap_verify_perf.sh b/resources/libraries/bash/entry/bootstrap_verify_perf.sh index fd677166b0..84d690ca12 100755 --- a/resources/libraries/bash/entry/bootstrap_verify_perf.sh +++ b/resources/libraries/bash/entry/bootstrap_verify_perf.sh @@ -50,6 +50,6 @@ select_tags || die compose_robot_arguments || die set_environment_variables || die run_robot || die -untrap_and_unreserve_testbed || die move_archives || die +untrap_and_unreserve_testbed || die die_on_robot_error || die |