aboutsummaryrefslogtreecommitdiffstats
path: root/testsuite/vests/vhdl-93/billowitch/compliant/tc2124.vhd
diff options
context:
space:
mode:
Diffstat (limited to 'testsuite/vests/vhdl-93/billowitch/compliant/tc2124.vhd')
-rw-r--r--testsuite/vests/vhdl-93/billowitch/compliant/tc2124.vhd3
1 files changed, 2 insertions, 1 deletions
diff --git a/testsuite/vests/vhdl-93/billowitch/compliant/tc2124.vhd b/testsuite/vests/vhdl-93/billowitch/compliant/tc2124.vhd
index 4ea3db28c..5c23e341e 100644
--- a/testsuite/vests/vhdl-93/billowitch/compliant/tc2124.vhd
+++ b/testsuite/vests/vhdl-93/billowitch/compliant/tc2124.vhd
@@ -69,7 +69,8 @@ BEGIN
TESTING : PROCESS
subtype String3to3 is STRING(3 to 3);
BEGIN
- CheckConcat(String3to3'("9") & "A", "9A", 3, 4);
+ -- VHDL87: CheckConcat(String3to3'("9") & "A", "9A", 3, 4);
+ CheckConcat(String3to3'("9") & "A", "9A", 1, 2); -- VHDL93
wait;
END PROCESS TESTING;