diff options
author | Patrick Lehmann <Patrick.Lehmann@plc2.de> | 2020-12-31 10:21:00 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-12-31 10:21:00 +0100 |
commit | 3f70363ee3ea05501d5b7ba84070808ac8721847 (patch) | |
tree | 2e18e5cce2cbcebfdc4259f4bd4eb3813ee9315a /testsuite | |
parent | 286d064a61a83ff39a389f96be86966977458a52 (diff) | |
download | ghdl-3f70363ee3ea05501d5b7ba84070808ac8721847.tar.gz ghdl-3f70363ee3ea05501d5b7ba84070808ac8721847.tar.bz2 ghdl-3f70363ee3ea05501d5b7ba84070808ac8721847.zip |
Added file headers and license texts. (#1564)
Diffstat (limited to 'testsuite')
-rw-r--r-- | testsuite/.coveragerc | 12 | ||||
-rw-r--r-- | testsuite/pyunit/SimpleEntity.vhdl | 1 | ||||
-rw-r--r-- | testsuite/pyunit/SimplePackage.vhdl | 3 |
3 files changed, 15 insertions, 1 deletions
diff --git a/testsuite/.coveragerc b/testsuite/.coveragerc new file mode 100644 index 000000000..7148874fb --- /dev/null +++ b/testsuite/.coveragerc @@ -0,0 +1,12 @@ +[run] +branch = true + +[report] +skip_covered = True +skip_empty = True + +[html] +directory = ../build/coverage + +[xml] +output = ../build/coverage.xml diff --git a/testsuite/pyunit/SimpleEntity.vhdl b/testsuite/pyunit/SimpleEntity.vhdl index a26a6357c..a61c1cf93 100644 --- a/testsuite/pyunit/SimpleEntity.vhdl +++ b/testsuite/pyunit/SimpleEntity.vhdl @@ -1,4 +1,5 @@ library ieee; +use ieee.std_logic_1164.all; use ieee.numeric_std.all; entity e1 is diff --git a/testsuite/pyunit/SimplePackage.vhdl b/testsuite/pyunit/SimplePackage.vhdl index f06cc32fa..0b93adf96 100644 --- a/testsuite/pyunit/SimplePackage.vhdl +++ b/testsuite/pyunit/SimplePackage.vhdl @@ -1,5 +1,6 @@ library ieee; -use ieee.numeric_std.all +use ieee.std_logic_1164.all; +use ieee.numeric_std.all; package pack_1 is constant const_1 : boolean; |