summaryrefslogtreecommitdiffstats
path: root/test/src/test-ecmascript-v8.cpp.old
diff options
context:
space:
mode:
authorStefan Radomski <radomski@tk.informatik.tu-darmstadt.de>2013-02-20 21:13:02 (GMT)
committerStefan Radomski <radomski@tk.informatik.tu-darmstadt.de>2013-02-20 21:13:02 (GMT)
commita56f28b0db56ff3e39f0b50e4c55c52b7aeec696 (patch)
tree41cf67ea5cee9593e86272ab55367653fbd1c2f3 /test/src/test-ecmascript-v8.cpp.old
parent7c779099b3acd1fa969dde718299484ebe0d2775 (diff)
downloaduscxml-a56f28b0db56ff3e39f0b50e4c55c52b7aeec696.zip
uscxml-a56f28b0db56ff3e39f0b50e4c55c52b7aeec696.tar.gz
uscxml-a56f28b0db56ff3e39f0b50e4c55c52b7aeec696.tar.bz2
See detailled log
- Builds on windows again - All HTTP requests are no passed into interpreter - New response element to reply with data - Moved basichttp URL - New HTTP servlet invoker to register additional URLs - More bugfixes than I care to mention
Diffstat (limited to 'test/src/test-ecmascript-v8.cpp.old')
-rw-r--r--test/src/test-ecmascript-v8.cpp.old24
1 files changed, 24 insertions, 0 deletions
diff --git a/test/src/test-ecmascript-v8.cpp.old b/test/src/test-ecmascript-v8.cpp.old
new file mode 100644
index 0000000..9ce39d9
--- /dev/null
+++ b/test/src/test-ecmascript-v8.cpp.old
@@ -0,0 +1,24 @@
+#include "uscxml/Interpreter.h"
+#include "uscxml/plugins/datamodel/ecmascript/v8/V8DataModel.h"
+
+int main(int argc, char** argv) {
+ if (argc != 2) {
+ std::cerr << "Expected path to test-ecmascript.scxml" << std::endl;
+ exit(EXIT_FAILURE);
+ }
+
+ using namespace uscxml;
+ using namespace Arabica::DOM;
+ using namespace Arabica::XPath;
+
+ Interpreter* scxml = Interpreter::fromURI(argv[1]);
+ scxml->start();
+ scxml->waitForStabilization();
+
+ Event event1;
+ event1.name = "event1";
+ scxml->receive(event1);
+ scxml->join();
+ tthread::this_thread::sleep_for(tthread::chrono::milliseconds(500));
+
+} \ No newline at end of file