blob: 52d977a31a9e19cdc126048c9973bf3196095ff8 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
|
# 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
|