summaryrefslogtreecommitdiffstats
path: root/test
diff options
context:
space:
mode:
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>