diff options
Diffstat (limited to 'test/run_suite.py')
-rwxr-xr-x | test/run_suite.py | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/test/run_suite.py b/test/run_suite.py index 52a418ef..463e40c4 100755 --- a/test/run_suite.py +++ b/test/run_suite.py @@ -125,7 +125,6 @@ def run_suite(args, command, out_dir): # Run test and record result passed = run_entry(args, entry, command, out_dir, top) - results.check(passed) # Write test report entry if args.report: @@ -137,13 +136,13 @@ def run_suite(args, command, out_dir): if exception.stderr is not None: sys.stderr.write(exception.stderr) - results.check(False, str(exception) + "\n") + results.check(passed) return util.print_result_summary(results) def main(): - """Run the command line tool.""" + """Run the test suite via the command line tool.""" parser = argparse.ArgumentParser( usage="%(prog)s [OPTION]... MANIFEST BASE_URI -- [ARG]...", |