Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
Y
yosys-tests
Overview
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
lvzhengyang
yosys-tests
Commits
aa4ca3f9
Commit
aa4ca3f9
authored
Jul 06, 2019
by
Miodrag Milanovic
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Do not run iverilog on this test
parent
5560220a
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
7 additions
and
23 deletions
+7
-23
regression/issue_00449/testbench.v
+0
-23
regression/run.sh
+7
-0
No files found.
regression/issue_00449/testbench.v
deleted
100644 → 0
View file @
5560220a
module
testbench
;
reg
clk
;
initial
begin
// $dumpfile("testbench.vcd");
// $dumpvars(0, testbench);
#
0
clk
=
0
;
repeat
(
10000
)
begin
#
5
clk
=
1
;
#
5
clk
=
0
;
end
$
display
(
"OKAY"
)
;
end
wire
b
;
top
uut
(
clk
,
b
)
;
assert_X
b_test
(
.
clk
(
clk
)
,
.
A
(
b
))
;
endmodule
regression/run.sh
View file @
aa4ca3f9
...
...
@@ -237,6 +237,13 @@ else
touch .stamp
exit
0
fi
# cases where we do not run iverilog
if
[
"
$1
"
=
"issue_00449"
]
;
then
echo
PASS
>
${
1
}
_
${
2
}
.status
touch .stamp
exit
0
fi
iverilog
-o
testbench ../testbench.v synth.v ../../common.v
$COMMON_PREFIX
/simcells.v
$COMMON_PREFIX
/simlib.v
$iverilog_adds
if
[
$?
!=
0
]
;
then
...
...
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