diff options
author | T. Meissner <programming@goodcleanfun.de> | 2019-10-07 19:13:46 +0200 |
---|---|---|
committer | tgingold <tgingold@users.noreply.github.com> | 2019-10-07 19:13:46 +0200 |
commit | b405a27654f326eb1117c0eda8e7389a64fc5c94 (patch) | |
tree | 87867ece999abba761b40ea5d2debdd6018247f4 /testsuite/issues/issue11 | |
parent | bf8b41da7f0650d93b79447a2a62313b15afc9af (diff) | |
download | ghdl-yosys-plugin-b405a27654f326eb1117c0eda8e7389a64fc5c94.tar.gz ghdl-yosys-plugin-b405a27654f326eb1117c0eda8e7389a64fc5c94.tar.bz2 ghdl-yosys-plugin-b405a27654f326eb1117c0eda8e7389a64fc5c94.zip |
testsuite: Add formal tests (#57)
* Add formal tests for shift operations
* ci: build ghdl/synth:formal and run test suites in it
* add testsuite/formal/testsuite.sh
* create testsuite/issues
* ci: remove a level of grouping
* testenv: fix SYMBIYOSYS
* refactor
* testsuite/formal/shifts: Add check for shifts > vector length
Diffstat (limited to 'testsuite/issues/issue11')
-rw-r--r-- | testsuite/issues/issue11/test_nand.vhdl | 14 | ||||
-rw-r--r-- | testsuite/issues/issue11/test_nor.vhdl | 14 | ||||
-rw-r--r-- | testsuite/issues/issue11/test_or.vhdl | 14 | ||||
-rw-r--r-- | testsuite/issues/issue11/test_xnor.vhdl | 14 | ||||
-rw-r--r-- | testsuite/issues/issue11/test_xor.vhdl | 14 | ||||
-rwxr-xr-x | testsuite/issues/issue11/testsuite.sh | 7 |
6 files changed, 77 insertions, 0 deletions
diff --git a/testsuite/issues/issue11/test_nand.vhdl b/testsuite/issues/issue11/test_nand.vhdl new file mode 100644 index 0000000..ae60966 --- /dev/null +++ b/testsuite/issues/issue11/test_nand.vhdl @@ -0,0 +1,14 @@ +library ieee; +use ieee.std_logic_1164.all; + +entity test_nand is port ( + sel0, sel1: in std_logic; + c: out std_logic); +end test_nand; + +architecture synth of test_nand is +begin + + c <= sel1 nand sel0; + +end synth; diff --git a/testsuite/issues/issue11/test_nor.vhdl b/testsuite/issues/issue11/test_nor.vhdl new file mode 100644 index 0000000..f5f911e --- /dev/null +++ b/testsuite/issues/issue11/test_nor.vhdl @@ -0,0 +1,14 @@ +library ieee; +use ieee.std_logic_1164.all; + +entity test_nor is port ( + sel0, sel1: in std_logic; + c: out std_logic); +end test_nor; + +architecture synth of test_nor is +begin + + c <= sel1 nor sel0; + +end synth; diff --git a/testsuite/issues/issue11/test_or.vhdl b/testsuite/issues/issue11/test_or.vhdl new file mode 100644 index 0000000..d39d064 --- /dev/null +++ b/testsuite/issues/issue11/test_or.vhdl @@ -0,0 +1,14 @@ +library ieee; +use ieee.std_logic_1164.all; + +entity test_or is port ( + sel0, sel1: in std_logic; + c: out std_logic); +end test_or; + +architecture synth of test_or is +begin + + c <= sel1 or sel0; + +end synth; diff --git a/testsuite/issues/issue11/test_xnor.vhdl b/testsuite/issues/issue11/test_xnor.vhdl new file mode 100644 index 0000000..4a706f0 --- /dev/null +++ b/testsuite/issues/issue11/test_xnor.vhdl @@ -0,0 +1,14 @@ +library ieee; +use ieee.std_logic_1164.all; + +entity test_xnor is port ( + sel0, sel1: in std_logic; + c: out std_logic); +end test_xnor; + +architecture synth of test_xnor is +begin + + c <= sel1 xnor sel0; + +end synth; diff --git a/testsuite/issues/issue11/test_xor.vhdl b/testsuite/issues/issue11/test_xor.vhdl new file mode 100644 index 0000000..b856745 --- /dev/null +++ b/testsuite/issues/issue11/test_xor.vhdl @@ -0,0 +1,14 @@ +library ieee; +use ieee.std_logic_1164.all; + +entity test_xor is port ( + sel0, sel1: in std_logic; + c: out std_logic); +end test_xor; + +architecture synth of test_xor is +begin + + c <= sel1 xor sel0; + +end synth; diff --git a/testsuite/issues/issue11/testsuite.sh b/testsuite/issues/issue11/testsuite.sh new file mode 100755 index 0000000..7aecfc9 --- /dev/null +++ b/testsuite/issues/issue11/testsuite.sh @@ -0,0 +1,7 @@ +#!/bin/sh + +for f in or xor nor nand xnor; do + synth "test_${f}.vhdl -e test_${f}" +done + +clean |