Config: changes to a couple of error msgs
authorNilay Vaish <nilay@cs.wisc.edu>
Thu, 7 Jun 2012 13:05:30 +0000 (08:05 -0500)
committerNilay Vaish <nilay@cs.wisc.edu>
Thu, 7 Jun 2012 13:05:30 +0000 (08:05 -0500)
configs/common/Benchmarks.py
configs/example/fs.py

index d881fafb0fab9f98d52f62f8908c2de82e04df50..bf8b84f174a72683681f1d9a6541ce9fa989ead0 100644 (file)
@@ -58,9 +58,9 @@ class SysConfig:
         elif buildEnv['TARGET_ISA'] == 'arm':
             return env.get('LINUX_IMAGE', disk('linux-arm-ael.img'))
         else:
-            print "Don't know what default disk image to use for ISA %s" % \
+            print "Don't know what default disk image to use for %s ISA" % \
                 buildEnv['TARGET_ISA']
-            sys.exit(1)
+            exit(1)
 
 # Benchmarks are defined as a key in a dict which is a list of SysConfigs
 # The first defined machine is the test system, the others are driving systems
index 33dc63af4a02d693f128f3319d691cb108265441..a85491c91e2d0ceb3288b5866df0cc670156a580 100644 (file)
@@ -107,7 +107,7 @@ elif buildEnv['TARGET_ISA'] == "arm":
             bare_metal=options.bare_metal)
     Simulation.setWorkCountOptions(test_sys, options)
 else:
-    fatal("incapable of building non-alpha or non-sparc full system!")
+    fatal("Incapable of building %s full system!", buildEnv['TARGET_ISA'])
 
 if options.kernel is not None:
     test_sys.kernel = binary(options.kernel)