From 663b942b97aa629489eb06b53ecb6682e9f5fbac Mon Sep 17 00:00:00 2001 From: Brian Drummond Date: Tue, 24 Dec 2013 16:54:03 +0000 Subject: Testsuite changes to elaborate and run tests marked run_compliant_test --- .../compliant/functional/attributes/signal/simple-event-attribute.vhdl | 3 ++- .../functional/generics/entity-generic-defines-port-type.vhdl | 1 + .../functional/statements/block-statements/simple-grouping-block.vhdl | 2 +- 3 files changed, 4 insertions(+), 2 deletions(-) (limited to 'testsuite/vests/vhdl-93/clifton-labs/compliant/functional') 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"; diff --git a/testsuite/vests/vhdl-93/clifton-labs/compliant/functional/generics/entity-generic-defines-port-type.vhdl b/testsuite/vests/vhdl-93/clifton-labs/compliant/functional/generics/entity-generic-defines-port-type.vhdl index 2257c12..d77743a 100644 --- a/testsuite/vests/vhdl-93/clifton-labs/compliant/functional/generics/entity-generic-defines-port-type.vhdl +++ b/testsuite/vests/vhdl-93/clifton-labs/compliant/functional/generics/entity-generic-defines-port-type.vhdl @@ -35,6 +35,7 @@ begin -- only gdpt1_finished <= true; wait for 1 fs; report "TEST PASSED"; + wait; end process doit; end only; diff --git a/testsuite/vests/vhdl-93/clifton-labs/compliant/functional/statements/block-statements/simple-grouping-block.vhdl b/testsuite/vests/vhdl-93/clifton-labs/compliant/functional/statements/block-statements/simple-grouping-block.vhdl index c10bd22..0223d6d 100644 --- a/testsuite/vests/vhdl-93/clifton-labs/compliant/functional/statements/block-statements/simple-grouping-block.vhdl +++ b/testsuite/vests/vhdl-93/clifton-labs/compliant/functional/statements/block-statements/simple-grouping-block.vhdl @@ -20,7 +20,7 @@ begin -- only begin if delay_line_out = '1' then assert now = 1 ns report "TEST FAILED - delay did not happen as expected!" severity FAILURE; - assert not(now = 1 ns) report "TEST PASSED" severity FAILURE; + assert not(now = 1 ns) report "TEST PASSED" severity WARNING; end if; end process; end only; -- cgit