aboutsummaryrefslogtreecommitdiffstats
path: root/test/run_suite.py
diff options
context:
space:
mode:
authorDavid Robillard <d@drobilla.net>2023-05-05 12:35:46 -0400
committerDavid Robillard <d@drobilla.net>2023-12-02 18:49:08 -0500
commit439d6ec3d6dfbea74334beace790f500e61c9b7d (patch)
treee385755a7d557dd5eb6f33b841072375cfaca29d /test/run_suite.py
parentc9afaab2a84f592e4567b37b3551511381e734e4 (diff)
downloadserd-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-xtest/run_suite.py5
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]...",