1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20
|
#!/usr/bin/env python3
# Copyright 2022 David Robillard <d@drobilla.net>
# SPDX-License-Identifier: ISC
"""Test quiet command-line option."""
import shlex
import subprocess
import serd_test_util as util
args = util.wrapper_args(__doc__, True)
command = shlex.split(args.wrapper) + [args.serdi, "-q", args.input]
proc = subprocess.run(
command, check=False, stdout=subprocess.PIPE, stderr=subprocess.PIPE
)
assert proc.returncode != 0
assert args.wrapper or len(proc.stderr) == 0
|