diff options
author | Stefan Radomski <github@mintwerk.de> | 2017-08-01 21:47:10 (GMT) |
---|---|---|
committer | Stefan Radomski <github@mintwerk.de> | 2017-08-01 21:47:10 (GMT) |
commit | 045bde78c0587316e0373c7698413412d0f315f9 (patch) | |
tree | f90d4ceb9d48fdc0dc240fce031dc81308e471dd /test/w3c | |
parent | e0a7e43e2e41639bb50127cc5419b712a7b1f6e2 (diff) | |
download | uscxml-045bde78c0587316e0373c7698413412d0f315f9.zip uscxml-045bde78c0587316e0373c7698413412d0f315f9.tar.gz uscxml-045bde78c0587316e0373c7698413412d0f315f9.tar.bz2 |
Reenabled V8, Debugger tests and smaller fixes
Diffstat (limited to 'test/w3c')
-rw-r--r-- | test/w3c/confPromela.xsl | 2 | ||||
-rw-r--r-- | test/w3c/promela/test310.scxml | 2 | ||||
-rw-r--r-- | test/w3c/promela/test411.scxml | 2 | ||||
-rw-r--r-- | test/w3c/promela/test413.scxml | 4 |
4 files changed, 5 insertions, 5 deletions
diff --git a/test/w3c/confPromela.xsl b/test/w3c/confPromela.xsl index 37920a5..44395d6 100644 --- a/test/w3c/confPromela.xsl +++ b/test/w3c/confPromela.xsl @@ -542,7 +542,7 @@ is the second argument --> </xsl:template> <xsl:template match="//@conf:inState"> - <xsl:attribute name="cond">config[<xsl:value-of select="upper-case(.)"/>]</xsl:attribute> + <xsl:attribute name="cond">config[<xsl:value-of select="."/>]</xsl:attribute> </xsl:template> <!-- returns a value that cannot be converted into a Boolean --> diff --git a/test/w3c/promela/test310.scxml b/test/w3c/promela/test310.scxml index 2428dcd..43d80f0 100644 --- a/test/w3c/promela/test310.scxml +++ b/test/w3c/promela/test310.scxml @@ -3,7 +3,7 @@ <scxml xmlns="http://www.w3.org/2005/07/scxml" xmlns:conf="http://www.w3.org/2005/scxml-conformance" version="1.0" datamodel="promela" initial="p"> <parallel id="p"> <state id="s0"> - <transition cond="config[S1]" target="pass"/> + <transition cond="config[s1]" target="pass"/> <transition target="fail"/> </state> <state id="s1"/> diff --git a/test/w3c/promela/test411.scxml b/test/w3c/promela/test411.scxml index 317b8c4..4b8da3e 100644 --- a/test/w3c/promela/test411.scxml +++ b/test/w3c/promela/test411.scxml @@ -16,7 +16,7 @@ timeout also indicates failure --> <transition event="event2" target="pass"/> <state id="s01"> <onentry> - <if cond="config[S01]"> + <if cond="config[s01]"> <raise event="event2"/> </if> </onentry> diff --git a/test/w3c/promela/test413.scxml b/test/w3c/promela/test413.scxml index f4c983d..70d5bed 100644 --- a/test/w3c/promela/test413.scxml +++ b/test/w3c/promela/test413.scxml @@ -16,7 +16,7 @@ states we should not enter all have immediate transitions to failure in them --> <transition target="fail"/> </state> <state id="s2p112"> - <transition cond="config[S2P122]" target="pass"/> + <transition cond="config[s2p122]" target="pass"/> </state> </state> <!-- end s2p11 --> @@ -25,7 +25,7 @@ states we should not enter all have immediate transitions to failure in them --> <transition target="fail"/> </state> <state id="s2p122"> - <transition cond="config[S2P112]" target="pass"/> + <transition cond="config[s2p112]" target="pass"/> </state> </state> </parallel> |