diff options
author | Yan <yanxk.fnst@fujitsu.com> | 2023-03-31 09:22:11 +0800 |
---|---|---|
committer | Yan <yanxk.fnst@fujitsu.com> | 2023-03-31 09:22:11 +0800 |
commit | e0371eee986998087c4e75acb48039dcec2c6283 (patch) | |
tree | 0e6461388002ba6f1bb6c0b59640d31bce2d4c0e /plugins/agl_test_utils.py | |
parent | 0124d938848301f8768d715b20dc1c4af486dd33 (diff) |
agl-test-framework: add LOG_MODE options
add new options: "default", "slim", "clear".
users can use export LOG_MODE="" to control how the
framework would delete all its temp files or folders.
"default": no influence, nothing would be removed.
"slim": test self-owned temp files and folders removed.
"clear": clean up each and every temp files and folders.
Bug-AGL: SPEC-4733
Signed-off-by: Yan <yanxk.fnst@fujitsu.com>
Change-Id: Ia3d8c2a971bbf97749448f732e848d9d15193459
Diffstat (limited to 'plugins/agl_test_utils.py')
-rw-r--r-- | plugins/agl_test_utils.py | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/plugins/agl_test_utils.py b/plugins/agl_test_utils.py index b1204a0..e2799f1 100644 --- a/plugins/agl_test_utils.py +++ b/plugins/agl_test_utils.py @@ -1,3 +1,5 @@ +import os +import shutil import subprocess from plugins.agl_test_conf import REPORT_LOGS_DIR @@ -29,3 +31,10 @@ def printe(msg): def printd(msg): # TODO print("==== DEBUG: " + msg) + +# delete entire temp log folder +def rm_all_tmp(): + env_dist=os.environ + mode = str(env_dist.get("LOG_MODE")) + if mode == "clear": + shutil.rmtree(TMP_LOGS_DIR) |