re-instate check-vsys-defaults as an ignored step
[tests.git] / system / utils.py
index 073c551..fbdd3f6 100644 (file)
@@ -39,7 +39,9 @@ def system(command,background=False,silent=False):
         # don't show in summary
         print "->",now,'--',
         sys.stdout.flush()
-    return os.system("set -x; " + command)
+    if not silent:
+        command = "set -x; " + command
+    return os.system(command)
 
 ### WARNING : this ALWAYS does its job, even in dry_run mode
 def output_of (command):