30 lines
690 B
Python
30 lines
690 B
Python
# Copyright 2017 Free Software Foundation, Inc.
|
|
# This file is part of GNU Radio
|
|
#
|
|
# SPDX-License-Identifier: GPL-2.0-or-later
|
|
#
|
|
|
|
from os import path
|
|
import sys
|
|
|
|
from grc.converter import flow_graph
|
|
|
|
|
|
def test_flow_graph_converter():
|
|
filename = path.join(path.dirname(__file__),
|
|
'resources', 'test_compiler.grc')
|
|
|
|
data = flow_graph.from_xml(filename)
|
|
|
|
flow_graph.dump(data, sys.stdout)
|
|
|
|
|
|
def test_flow_graph_converter_with_fp():
|
|
filename = path.join(path.dirname(__file__),
|
|
'resources', 'test_compiler.grc')
|
|
|
|
with open(filename, 'rb') as fp:
|
|
data = flow_graph.from_xml(fp)
|
|
|
|
flow_graph.dump(data, sys.stdout)
|