diff options
author | David Robillard <d@drobilla.net> | 2023-05-05 12:35:46 -0400 |
---|---|---|
committer | David Robillard <d@drobilla.net> | 2023-12-02 18:49:08 -0500 |
commit | 439d6ec3d6dfbea74334beace790f500e61c9b7d (patch) | |
tree | e385755a7d557dd5eb6f33b841072375cfaca29d /test/run_suite.py | |
parent | c9afaab2a84f592e4567b37b3551511381e734e4 (diff) | |
download | serd-439d6ec3d6dfbea74334beace790f500e61c9b7d.tar.gz serd-439d6ec3d6dfbea74334beace790f500e61c9b7d.tar.bz2 serd-439d6ec3d6dfbea74334beace790f500e61c9b7d.zip |
Add statement filter sink and serd-filter tool
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]...", |