summaryrefslogtreecommitdiffstats
path: root/test
diff options
context:
space:
mode:
authorStefan Radomski <github@mintwerk.de>2016-11-24 16:37:46 (GMT)
committerStefan Radomski <github@mintwerk.de>2016-11-24 16:37:46 (GMT)
commitfcfc842a1ccee7a6b2579889f3236d50849c0679 (patch)
treeb830cd41d4a1c912e1c16d48e8e4bb52a6fdc21d /test
parentc6740774eaa2a41442456cf588644c9693e8d5e2 (diff)
parente7c0fbce1c1a5b4fe327c6a1e551c347bb30a332 (diff)
downloaduscxml-fcfc842a1ccee7a6b2579889f3236d50849c0679.zip
uscxml-fcfc842a1ccee7a6b2579889f3236d50849c0679.tar.gz
uscxml-fcfc842a1ccee7a6b2579889f3236d50849c0679.tar.bz2
Merge branch 'master' of github.com:tklab-tud/uscxml
Diffstat (limited to 'test')
-rw-r--r--test/ctest/scripts/run_generated_test.cmake4
-rw-r--r--test/w3c/ecma/test145.scxml29
2 files changed, 31 insertions, 2 deletions
diff --git a/test/ctest/scripts/run_generated_test.cmake b/test/ctest/scripts/run_generated_test.cmake
index 7057bd0..b91d4f2 100644
--- a/test/ctest/scripts/run_generated_test.cmake
+++ b/test/ctest/scripts/run_generated_test.cmake
@@ -44,9 +44,9 @@ if (${TARGETLANG} STREQUAL "vhdl")
endif ()
message(STATUS "time for transforming to binary")
- message(STATUS "${GHDL_BIN} -r ${VHDL_TESTBENCH_NAME} --vcd=${VHDL_TESTBENCH_NAME}.vcd")
+ message(STATUS "${GHDL_BIN} -r ${VHDL_TESTBENCH_NAME}")
execute_process(
- COMMAND time -p ${GHDL_BIN} -r ${VHDL_TESTBENCH_NAME} --vcd=${VHDL_TESTBENCH_NAME}.vcd
+ COMMAND time -p ${GHDL_BIN} -r ${VHDL_TESTBENCH_NAME}
WORKING_DIRECTORY ${OUTDIR} RESULT_VARIABLE CMD_RESULT)
if (CMD_RESULT)
message(FATAL_ERROR "Error running ghdl ${GHDL_BIN}: ${CMD_RESULT}")
diff --git a/test/w3c/ecma/test145.scxml b/test/w3c/ecma/test145.scxml
new file mode 100644
index 0000000..b0fdba6
--- /dev/null
+++ b/test/w3c/ecma/test145.scxml
@@ -0,0 +1,29 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!-- self defined test, to test spontaneous transitions after event driven transitions -->
+<scxml xmlns="http://www.w3.org/2005/07/scxml" xmlns:conf="http://www.w3.org/2005/scxml-conformance" initial="s0" version="1.0" datamodel="ecmascript">
+ <state id="s0">
+ <onentry>
+ <raise event="foo"/>
+ <raise event="bar"/>
+ </onentry>
+ <transition event="foo" target="s1"/>
+ <transition event="*" target="fail"/>
+ </state>
+ <state id="s1">
+ <transition event="bar" target="s2"/>
+ <transition event="*" target="fail"/>
+ </state>
+ <state id="s2">
+ <transition target="s2"/>
+ </state>
+ <final id="pass">
+ <onentry>
+ <log label="Outcome" expr="'pass'"/>
+ </onentry>
+ </final>
+ <final id="fail">
+ <onentry>
+ <log label="Outcome" expr="'fail'"/>
+ </onentry>
+ </final>
+</scxml>