aboutsummaryrefslogtreecommitdiffstats
path: root/testsuite/examples
diff options
context:
space:
mode:
Diffstat (limited to 'testsuite/examples')
-rw-r--r--testsuite/examples/blackbox/blackbox3.vhdl4
-rwxr-xr-xtestsuite/examples/blackbox/testsuite.sh1
2 files changed, 3 insertions, 2 deletions
diff --git a/testsuite/examples/blackbox/blackbox3.vhdl b/testsuite/examples/blackbox/blackbox3.vhdl
index a506df0..864247d 100644
--- a/testsuite/examples/blackbox/blackbox3.vhdl
+++ b/testsuite/examples/blackbox/blackbox3.vhdl
@@ -9,10 +9,10 @@ end;
architecture behav of blackbox3 is
component \lib__cell__box2.3\ is
port (a, b : std_logic;
- \OUT\ : out std_logic);
+ \O\ : out std_logic);
end component;
begin
inst: \lib__cell__box2.3\
- port map (a => a, b => b, \OUT\ => o);
+ port map (a => a, b => b, \O\ => o);
end behav;
diff --git a/testsuite/examples/blackbox/testsuite.sh b/testsuite/examples/blackbox/testsuite.sh
index 35322f2..a0db873 100755
--- a/testsuite/examples/blackbox/testsuite.sh
+++ b/testsuite/examples/blackbox/testsuite.sh
@@ -11,6 +11,7 @@ fgrep -q ".OUT(" blackbox2.v
run_yosys -q -p "ghdl blackbox3.vhdl -e; write_verilog blackbox3.v"
fgrep -q "\lib__cell__box2.3 " blackbox3.v
+fgrep -q ".O(" blackbox3.v
clean
echo OK
66'>166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231