aboutsummaryrefslogtreecommitdiffstats
path: root/test/test_quiet.py
diff options
context:
space:
mode:
Diffstat (limited to 'test/test_quiet.py')
-rwxr-xr-xtest/test_quiet.py2
1 files changed, 2 insertions, 0 deletions
diff --git a/test/test_quiet.py b/test/test_quiet.py
index e27cb9ea..4d6dfaa5 100755
--- a/test/test_quiet.py
+++ b/test/test_quiet.py
@@ -17,5 +17,7 @@ args = parser.parse_args(sys.argv[1:])
command = shlex.split(args.wrapper) + [args.serdi, "-q", args.input]
proc = subprocess.run(command, check=False, capture_output=True)
+print(' '.join([shlex.quote(c) for c in command]))
assert proc.returncode != 0
+print(proc.stderr)
assert len(proc.stderr) == 0