From 0d95404dcdbda326a3fffa344a8295bf696f9626 Mon Sep 17 00:00:00 2001 From: chenjiankun Date: Thu, 19 Jan 2017 20:24:48 +0000 Subject: Record task status if running via CLI JIRA: YARDSTICK-542 Currently we do not record task status when using CLI to run task. So I add this function. If status=0, task is not done. if status=1, task is done. if status=2, there is an error. Change-Id: Ib9b3c8abd233909c04f792115199250419fa8d7a Signed-off-by: chenjiankun --- yardstick/benchmark/core/task.py | 2 -- 1 file changed, 2 deletions(-) (limited to 'yardstick/benchmark/core') diff --git a/yardstick/benchmark/core/task.py b/yardstick/benchmark/core/task.py index 14b46867c..87d70f42f 100644 --- a/yardstick/benchmark/core/task.py +++ b/yardstick/benchmark/core/task.py @@ -66,8 +66,6 @@ class Task(object): # pragma: no cover if args.parse_only: sys.exit(0) - if os.path.isfile(args.output_file): - os.remove(args.output_file) # parse task_files for i in range(0, len(task_files)): one_task_start_time = time.time() -- cgit 1.2.3-korg