Josh Morman b7828c950c grc: pep8 formatting
Signed-off-by: Josh Morman <jmorman@gnuradio.org>
2021-11-24 14:41:53 -05:00

30 lines
564 B
Python

# Copyright 2019 Free Software Foundation, Inc.
#
# This file is part of GNU Radio
#
# SPDX-License-Identifier: GPL-3.0-or-later
#
import pytest
from argparse import Namespace
from os import path
import tempfile
from grc.compiler import main
def test_cpp(capsys):
args = Namespace(
output=tempfile.gettempdir(),
user_lib_dir=False,
grc_files=[path.join(path.dirname(__file__),
'resources', 'test_cpp.grc')],
run=True
)
main(args)
out, err = capsys.readouterr()
assert not err