|
@@ -121,7 +121,7 @@ class Test(object):
|
|
|
parser = ConfigParser.SafeConfigParser()
|
|
|
parser.read(path)
|
|
|
|
|
|
- log.debug("running '%s'" % path)
|
|
|
+ log.warning("running '%s'" % path)
|
|
|
|
|
|
self.path = path
|
|
|
self.test_dir = options.test_dir
|
|
@@ -172,7 +172,7 @@ class Test(object):
|
|
|
self.perf, self.command, tempdir, self.args)
|
|
|
ret = os.WEXITSTATUS(os.system(cmd))
|
|
|
|
|
|
- log.warning(" running '%s' ret %d " % (cmd, ret))
|
|
|
+ log.info(" '%s' ret %d " % (cmd, ret))
|
|
|
|
|
|
if ret != int(self.ret):
|
|
|
raise Unsup(self)
|