summaryrefslogtreecommitdiffstats
path: root/test/w3c/promela/test207.scxml
diff options
context:
space:
mode:
authorStefan Radomski <radomski@tk.informatik.tu-darmstadt.de>2014-12-01 11:02:40 (GMT)
committerStefan Radomski <radomski@tk.informatik.tu-darmstadt.de>2014-12-01 11:02:40 (GMT)
commitaf6609592298c5e047e37e5ae2b47e6a8edbb677 (patch)
treee6e7da1cd34dccf3fb4f389e684b7c899b12987a /test/w3c/promela/test207.scxml
parentd2e90c02e5ad19a5857e7c7fb87f248182fdb32d (diff)
downloaduscxml-af6609592298c5e047e37e5ae2b47e6a8edbb677.zip
uscxml-af6609592298c5e047e37e5ae2b47e6a8edbb677.tar.gz
uscxml-af6609592298c5e047e37e5ae2b47e6a8edbb677.tar.bz2
Nested invokers and delayed events for PROMELA model checking
Diffstat (limited to 'test/w3c/promela/test207.scxml')
-rw-r--r--test/w3c/promela/test207.scxml6
1 files changed, 3 insertions, 3 deletions
diff --git a/test/w3c/promela/test207.scxml b/test/w3c/promela/test207.scxml
index 4adbfca..a780b41 100644
--- a/test/w3c/promela/test207.scxml
+++ b/test/w3c/promela/test207.scxml
@@ -6,7 +6,7 @@ raised in another session, but the spec doesn't define any way to refer to an ev
<scxml xmlns="http://www.w3.org/2005/07/scxml" xmlns:conf="http://www.w3.org/2005/scxml-conformance" initial="s0" version="1.0" datamodel="promela">
<state id="s0" initial="s01">
<onentry>
- <send event="timeout" delayexpr="'2s'"/>
+ <send event="timeout" delayexpr="2000"/>
</onentry>
<invoke type="scxml">
<content>
@@ -16,8 +16,8 @@ raised in another session, but the spec doesn't define any way to refer to an ev
<scxml initial="sub0" version="1.0" datamodel="promela">
<state id="sub0">
<onentry>
- <send event="event1" id="foo" delayexpr="'1s'"/>
- <send event="event2" delayexpr="'1.5s'"/>
+ <send event="event1" id="foo" delayexpr="1000"/>
+ <send event="event2" delayexpr="1500"/>
<send target="#_parent" event="childToParent"/>
</onentry>
<transition event="event1" target="subFinal">