From 6c602c82a7c8285d1a41cfbf714cbd2ea09b182f Mon Sep 17 00:00:00 2001 From: Daniel Friesel Date: Wed, 11 Sep 2019 11:21:08 +0200 Subject: PTA: Use "None" transition for sleep This way, PTA models can have sleep transitions without conflict --- test/test_pta.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'test/test_pta.py') diff --git a/test/test_pta.py b/test/test_pta.py index dba67d7..e8de399 100755 --- a/test/test_pta.py +++ b/test/test_pta.py @@ -328,9 +328,9 @@ class TestPTA(unittest.TestCase): pta.add_transition('TX', 'IDLE', 'txComplete', timeout = 2000, is_interrupt = True) trace = [ ['init'], - ['sleep', 10000000], + [None, 10000000], ['send', 'foo', 3], - ['sleep', 5000000], + [None, 5000000], ['send', 'foo', 3] ] expected_energy = 5. * 10000000 + 3 + 100 * 2000 + 5 * 5000000 + 3 + 100 * 2000 -- cgit v1.2.3