aboutsummaryrefslogtreecommitdiffstats
path: root/testsuite/python/units01/show_units.py
diff options
context:
space:
mode:
authorumarcor <unai.martinezcorral@ehu.eus>2020-08-27 09:59:59 +0200
committerTristan Gingold <tgingold@free.fr>2020-09-16 07:57:25 +0200
commit63fd2ca7ce387c914668f8393962751a55ac4138 (patch)
treed1c3314e812ddb1c6b744f2708d5797db0e2103e /testsuite/python/units01/show_units.py
parentbec6b6245851c955fc7e16835af81a4417133e05 (diff)
downloadghdl-63fd2ca7ce387c914668f8393962751a55ac4138.tar.gz
ghdl-63fd2ca7ce387c914668f8393962751a55ac4138.tar.bz2
ghdl-63fd2ca7ce387c914668f8393962751a55ac4138.zip
py: add 'show_ports.py' to testsuite/python/units01
Diffstat (limited to 'testsuite/python/units01/show_units.py')
-rwxr-xr-xtestsuite/python/units01/show_units.py16
1 files changed, 8 insertions, 8 deletions
diff --git a/testsuite/python/units01/show_units.py b/testsuite/python/units01/show_units.py
index aad377723..56ab8adee 100755
--- a/testsuite/python/units01/show_units.py
+++ b/testsuite/python/units01/show_units.py
@@ -1,9 +1,9 @@
#!/usr/bin/env python
import libghdl
-import libghdl.thin.name_table as name_table
-import libghdl.thin.files_map as files_map
-import libghdl.thin.vhdl.nodes as nodes
-import libghdl.thin.vhdl.sem_lib as sem_lib
+from libghdl.thin import name_table
+from libghdl.thin import files_map
+from libghdl.thin.vhdl import nodes
+from libghdl.thin.vhdl import sem_lib
def init():
@@ -22,10 +22,10 @@ def list_units(filename):
file_id = name_table.Get_Identifier(filename.encode("utf_8"))
sfe = files_map.Read_Source_File(name_table.Null_Identifier, file_id)
if sfe == files_map.No_Source_File_Entry:
- print("cannot open file '{}'".format(filename))
+ print("cannot open file '%s'" % filename)
return
- # Parse and analyze
+ # Parse
file = sem_lib.Load_File(sfe)
# Display all design units
@@ -33,9 +33,9 @@ def list_units(filename):
while unit != nodes.Null_Iir:
lib_unit = nodes.Get_Library_Unit(unit)
if nodes.Get_Kind(lib_unit) == nodes.Iir_Kind.Entity_Declaration:
- print("entity {}".format(get_identifier_ptr(lib_unit)))
+ print("entity %s" % get_identifier_ptr(lib_unit))
elif nodes.Get_Kind(lib_unit) == nodes.Iir_Kind.Architecture_Body:
- print("architecture {}".format(get_identifier_ptr(lib_unit)))
+ print("architecture %s" % get_identifier_ptr(lib_unit))
else:
print("unknown unit!")
unit = nodes.Get_Chain(unit)