summaryrefslogtreecommitdiff
path: root/testsuite/vests/vhdl-93/clifton-labs/compliant/functional/attributes
diff options
context:
space:
mode:
authorBrian Drummond2013-12-24 16:54:03 +0000
committerBrian Drummond2013-12-24 16:54:03 +0000
commit663b942b97aa629489eb06b53ecb6682e9f5fbac (patch)
tree34286e5d5b448b49c50497f1406b43c7b1bf0cf7 /testsuite/vests/vhdl-93/clifton-labs/compliant/functional/attributes
parent0a96f62124b33a501dafa2da71dc890aad386491 (diff)
downloadghdl-663b942b97aa629489eb06b53ecb6682e9f5fbac.tar.gz
ghdl-663b942b97aa629489eb06b53ecb6682e9f5fbac.tar.bz2
ghdl-663b942b97aa629489eb06b53ecb6682e9f5fbac.zip
Testsuite changes to elaborate and run tests marked run_compliant_test
Diffstat (limited to 'testsuite/vests/vhdl-93/clifton-labs/compliant/functional/attributes')
-rw-r--r--testsuite/vests/vhdl-93/clifton-labs/compliant/functional/attributes/signal/simple-event-attribute.vhdl3
1 files changed, 2 insertions, 1 deletions
diff --git a/testsuite/vests/vhdl-93/clifton-labs/compliant/functional/attributes/signal/simple-event-attribute.vhdl b/testsuite/vests/vhdl-93/clifton-labs/compliant/functional/attributes/signal/simple-event-attribute.vhdl
index e3c5d30..e37fe34 100644
--- a/testsuite/vests/vhdl-93/clifton-labs/compliant/functional/attributes/signal/simple-event-attribute.vhdl
+++ b/testsuite/vests/vhdl-93/clifton-labs/compliant/functional/attributes/signal/simple-event-attribute.vhdl
@@ -13,7 +13,8 @@ begin
-- s <= '1';
-- wait for 0 ns;
assert s = '0' report "TEST FAILED - s has not changed to 0 yet!" severity failure;
- wait for 10 ns;
+ --wait for 10 ns;
+ wait for 4 ns;
assert s = '1' report "TEST FAILED - s has not changed to 1 yet!" severity failure;
assert (s'event) report "TEST FAILED - 'event not tripped" severity failure;
report "TEST PASSED";