diff options
author | 2022-07-03 16:45:47 +0800 | |
---|---|---|
committer | 2022-09-30 09:23:36 +0000 | |
commit | 85ceffe6e67c45492818e83bec53763a16ce9e72 (patch) | |
tree | c7c614477d7d0a68a847e1726c831d91dcd87fd2 /plugins | |
parent | df488024c6c01f1bc35628b303298097083ed350 (diff) |
agl-test-framework: add test set of aio-stress
Add the script file that calls the test set 'aiostress'.
Bug-AGL: SPEC-4345
Signed-off-by: duerpei <duep.fnst@fujitsu.com>
Change-Id: Ib3906fed1f85031d3554342a5555aa3a046b8c09
Diffstat (limited to 'plugins')
-rw-r--r-- | plugins/agl_test_base.py | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/plugins/agl_test_base.py b/plugins/agl_test_base.py index 6888d34..1a2c602 100644 --- a/plugins/agl_test_base.py +++ b/plugins/agl_test_base.py @@ -17,6 +17,9 @@ class AGLBaseTest: def get_name(self): return self.name + def get_temp_logdir(self): + return conf.TMP_LOGS_DIR + self.name + def get_temp_logfile(self): return conf.get_log_file(self.name) |