diff options
-rw-r--r-- | testsuite/synth/conv01/conv01.vhdl | 12 | ||||
-rwxr-xr-x | testsuite/synth/conv01/testsuite.sh | 10 |
2 files changed, 22 insertions, 0 deletions
diff --git a/testsuite/synth/conv01/conv01.vhdl b/testsuite/synth/conv01/conv01.vhdl new file mode 100644 index 000000000..f4cd8bab9 --- /dev/null +++ b/testsuite/synth/conv01/conv01.vhdl @@ -0,0 +1,12 @@ +library ieee; +use ieee.std_logic_1164.all; + +entity conv01 is + port (a, b : in std_logic; + z : out std_logic); +end conv01; + +architecture behav of conv01 is +begin + z <= not a and std_logic(b); +end behav; diff --git a/testsuite/synth/conv01/testsuite.sh b/testsuite/synth/conv01/testsuite.sh new file mode 100755 index 000000000..7de4702f2 --- /dev/null +++ b/testsuite/synth/conv01/testsuite.sh @@ -0,0 +1,10 @@ +#! /bin/sh + +. ../../testenv.sh + +for t in conv01; do + synth_analyze $t + clean +done + +echo "Test successful" |