Pierre-Yves Péneau has uploaded this change for review. ( https://gem5-review.googlesource.com/2221

Change subject: config: exit with fatal() if error
......................................................................

config: exit with fatal() if error

If output redirection is activated, the error message is printed in
simout. This change ensure it will be printed in simerr.

Change-Id: Ie661ac6b6978bf2e4aaaccdf23134795d764d459
Signed-off-by: Pierre-Yves Péneau <pierre-yves.pen...@lirmm.fr>
---
M configs/common/PlatformConfig.py
1 file changed, 5 insertions(+), 2 deletions(-)



diff --git a/configs/common/PlatformConfig.py b/configs/common/PlatformConfig.py
index 3541c07..e2589c0 100644
--- a/configs/common/PlatformConfig.py
+++ b/configs/common/PlatformConfig.py
@@ -1,6 +1,8 @@
 # Copyright (c) 2012, 2015 ARM Limited
 # All rights reserved.
 #
+# Copyright (c) 2017, Centre National de la Recherche Scientifique (CNRS)
+#
 # The license below extends only to copyright in the software and shall
 # not be construed as granting a license to any other intellectual
 # property including but not limited to intellectual property relating
@@ -34,10 +36,12 @@
 # OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
 #
 # Authors: Andreas Sandberg
+#          Pierre-Yves Peneau

 import m5.objects
 import inspect
 import sys
+from m5.util import fatal
 from textwrap import TextWrapper

 # Dictionary of mapping names of real CPU models to classes.
@@ -74,8 +78,7 @@
     try:
         return _platform_classes[real_name]
     except KeyError:
-        print "%s is not a valid Platform model." % (name,)
-        sys.exit(1)
+        fatal("%s is not a valid Platform model." % (name,))

 def print_platform_list():
"""Print a list of available Platform classes including their aliases."""

--
To view, visit https://gem5-review.googlesource.com/2221
To unsubscribe, visit https://gem5-review.googlesource.com/settings

Gerrit-Project: public/gem5
Gerrit-Branch: master
Gerrit-MessageType: newchange
Gerrit-Change-Id: Ie661ac6b6978bf2e4aaaccdf23134795d764d459
Gerrit-Change-Number: 2221
Gerrit-PatchSet: 1
Gerrit-Owner: Pierre-Yves Péneau <pierre-yves.pen...@lirmm.fr>
_______________________________________________
gem5-dev mailing list
gem5-dev@gem5.org
http://m5sim.org/mailman/listinfo/gem5-dev

Reply via email to