aboutsummaryrefslogtreecommitdiff
path: root/verif/runner/tosa_refmodel_sut_run.py
diff options
context:
space:
mode:
Diffstat (limited to 'verif/runner/tosa_refmodel_sut_run.py')
-rw-r--r--verif/runner/tosa_refmodel_sut_run.py8
1 files changed, 2 insertions, 6 deletions
diff --git a/verif/runner/tosa_refmodel_sut_run.py b/verif/runner/tosa_refmodel_sut_run.py
index b9a9575..2aeb7b1 100644
--- a/verif/runner/tosa_refmodel_sut_run.py
+++ b/verif/runner/tosa_refmodel_sut_run.py
@@ -58,12 +58,8 @@ class TosaSUTRunner(TosaTestRunner):
graphResult = TosaTestRunner.TosaGraphResult.TOSA_UNPREDICTABLE
else:
graphResult = TosaTestRunner.TosaGraphResult.OTHER_ERROR
- if (
- self.args.verbose
- or graphResult == TosaTestRunner.TosaGraphResult.OTHER_ERROR
- ):
- print(e)
-
+ if not self.args.verbose:
+ print(e)
except Exception as e:
print(e)
graphMessage = str(e)