diff options
author | 2012-11-08 08:43:47 +0000 | |
---|---|---|
committer | 2012-11-08 08:43:47 +0000 | |
commit | 298c3db17b3111b8fce9fbc95b7572f458eede8e (patch) | |
tree | a49eae10976fe6b3a8267fc55107f142daab7830 | |
parent | a625b480a112adfeedbdcdddad9bec9b4c18bd16 (diff) |
consistency fix (nw)
-rw-r--r-- | src/regtests/jedutil/jedtest.py | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/regtests/jedutil/jedtest.py b/src/regtests/jedutil/jedtest.py index 1db9e4117c8..962688dca02 100644 --- a/src/regtests/jedutil/jedtest.py +++ b/src/regtests/jedutil/jedtest.py @@ -97,7 +97,7 @@ def main(): not os.path.exists(jedsPath) or not os.path.exists(baselinePath) or not os.path.exists(jedUtilApp)): - print "One of the above paths does not exist. Aborting." % jedUtilApp + print "One of the above paths does not exist. Aborting. %s" % jedUtilApp return 3 @@ -129,10 +129,10 @@ def main(): success = True for test in tests: if VERBOSE: - print "Diffing the output from viewing the JED file: %s" % test.name + print "Diffing the output from viewing the JED file: %s" % os.path.basename(test.jedFile) if not filecmp.cmp(test.outputFile, test.baselineFile): success = False - print "Test %s failed" % test.name + print "Test %s failed" % os.path.basename(test.jedFile) # Report |