From edd6a3bf10e18a100f4289613a94f86ea7281587 Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Bj=C3=B6rn=20Vonheiden?= <bjoern.vonheiden@hotmail.de>
Date: Thu, 17 Dec 2020 14:57:29 +0100
Subject: [PATCH] make more obvious that benchmark continuous

---
 execution/run_uc.py                                         | 6 ++++--
 .../subexperiment_evaluation/subexperiment_evaluator.py     | 6 ++++--
 2 files changed, 8 insertions(+), 4 deletions(-)

diff --git a/execution/run_uc.py b/execution/run_uc.py
index e1db5f509..d62b11708 100644
--- a/execution/run_uc.py
+++ b/execution/run_uc.py
@@ -287,8 +287,10 @@ def run_evaluation(exp_id, uc_id, dim_value, instances, execution_minutes, prome
                           execution_minutes, prometheus_base_url,
                           result_path)
     except Exception as e:
-        print('Evaluation function failed')
-        logging.exception('Evaluation function failed')
+        err_msg = 'Evaluation function failed'
+        print(err_msg)
+        logging.exception(err_msg)
+        print('Benchmark continuous')
 
     return
 
diff --git a/execution/strategies/subexperiment_evaluation/subexperiment_evaluator.py b/execution/strategies/subexperiment_evaluation/subexperiment_evaluator.py
index 870ec0cd7..442a7999c 100644
--- a/execution/strategies/subexperiment_evaluation/subexperiment_evaluator.py
+++ b/execution/strategies/subexperiment_evaluation/subexperiment_evaluator.py
@@ -13,8 +13,10 @@ def execute(config):
     try:
         trend_slope = trend_slope_computer.compute(cwd, file, WARMUP_SEC, THRESHOLD)
     except Exception as e:
-        print('Computing trend slope failed.')
-        logging.exception('Computing trend slope failed.')
+        err_msg = 'Computing trend slope failed'
+        print(err_msg)
+        logging.exception(err_msg)
+        print('Mark this subexperiment as not successful and continue benchmark')
         return 0
 
 
-- 
GitLab