Skip to content
Projects
Groups
Snippets
Help
Loading...
Sign in
Toggle navigation
H
Hdlmake
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
15
Issues
15
List
Board
Labels
Milestones
Merge Requests
2
Merge Requests
2
Wiki
Wiki
image/svg+xml
Discourse
Discourse
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Commits
Issue Boards
Open sidebar
Projects
Hdlmake
Commits
0cc0718e
Commit
0cc0718e
authored
Oct 29, 2019
by
Tristan Gingold
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
testsuite: add a test with sub-sub-modules.
parent
774553f8
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
68 additions
and
0 deletions
+68
-0
Makefile.ref
testsuite/087many_modules/Makefile.ref
+55
-0
Manifest.py
testsuite/087many_modules/Manifest.py
+8
-0
Manifest.py
testsuite/087many_modules/s1/Manifest.py
+1
-0
Manifest.py
testsuite/087many_modules/s2/Manifest.py
+1
-0
test_all.py
testsuite/test_all.py
+3
-0
No files found.
testsuite/087many_modules/Makefile.ref
0 → 100644
View file @
0cc0718e
########################################
# This file was generated by hdlmake #
# http://ohwr.org/projects/hdl-make/ #
########################################
TOP_MODULE
:=
gate
MODELSIM_INI_PATH
:=
../linux_fakebin/..
VCOM_FLAGS
:=
-quiet
-modelsimini
modelsim.ini
VSIM_FLAGS
:=
VLOG_FLAGS
:=
-quiet
-modelsimini
modelsim.ini
VMAP_FLAGS
:=
-modelsimini
modelsim.ini
#target for performing local simulation
local
:
sim_pre_cmd simulation sim_post_cmd
VERILOG_SRC
:=
VERILOG_OBJ
:=
VHDL_SRC
:=
../files/gate.vhdl
\
VHDL_OBJ
:=
work/gate/.gate_vhdl
\
INCLUDE_DIRS
:=
LIBS
:=
work
LIB_IND
:=
work/.work
simulation
:
modelsim.ini $(LIB_IND) $(VERILOG_OBJ) $(VHDL_OBJ)
$(VERILOG_OBJ)
:
modelsim.ini
$(VHDL_OBJ)
:
$(LIB_IND) modelsim.ini
modelsim.ini
:
$(MODELSIM_INI_PATH)/modelsim.ini
cp
$<
.
2>&1
work/.work
:
(
vlib work
&&
vmap
$(VMAP_FLAGS)
work
&&
touch
work/.work
)||
rm
-rf
work
work/gate/.gate_vhdl
:
../files/gate.vhdl
vcom
$(VCOM_FLAGS)
-work
work
$<
@
mkdir
-p
$
(
dir
$@
)
&&
touch
$@
# USER SIM COMMANDS
sim_pre_cmd
:
sim_post_cmd
:
CLEAN_TARGETS
:=
$(LIBS)
modelsim.ini transcript
clean
:
rm
-rf
$(CLEAN_TARGETS)
mrproper
:
clean
rm
-rf
*
.vcd
*
.wlf
.PHONY
:
mrproper clean sim_pre_cmd sim_post_cmd simulation
testsuite/087many_modules/Manifest.py
0 → 100644
View file @
0cc0718e
action
=
"simulation"
sim_tool
=
"modelsim"
top_module
=
"gate"
#files = [ "../files/gate.vhdl" ]
modules
=
{
'local'
:
[
's1'
,
's2'
]}
testsuite/087many_modules/s1/Manifest.py
0 → 100644
View file @
0cc0718e
modules
=
{
'local'
:
[
'../s2'
]}
testsuite/087many_modules/s2/Manifest.py
0 → 100644
View file @
0cc0718e
files
=
[
'../../files/gate.vhdl'
]
testsuite/test_all.py
View file @
0cc0718e
...
...
@@ -471,6 +471,9 @@ def test_err_ise_no_family():
run
([],
path
=
"086ise_no_family"
)
assert
False
def
test_many_modules
():
run_compare
(
path
=
"087many_modules"
)
@
pytest
.
mark
.
xfail
def
test_xfail
():
"""This is a self-consistency test: the test is known to fail"""
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment