summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorStefan Radomski <radomski@tk.informatik.tu-darmstadt.de>2013-11-19 17:29:59 (GMT)
committerStefan Radomski <radomski@tk.informatik.tu-darmstadt.de>2013-11-19 17:29:59 (GMT)
commit75c66cb057897c8078b3f837eace7eab4f2fb397 (patch)
treecce41193048347b39c39c8525adb0ae6c61b4420 /src
parent60aab00ff93e0821b426fe66f1d91e96f7e7d27b (diff)
downloaduscxml-75c66cb057897c8078b3f837eace7eab4f2fb397.zip
uscxml-75c66cb057897c8078b3f837eace7eab4f2fb397.tar.gz
uscxml-75c66cb057897c8078b3f837eace7eab4f2fb397.tar.bz2
Start tests with HTTP available, as some will fail otherwise
Diffstat (limited to 'src')
-rw-r--r--src/uscxml/plugins/datamodel/ecmascript/JavaScriptCore/JSCDataModel.cpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/uscxml/plugins/datamodel/ecmascript/JavaScriptCore/JSCDataModel.cpp b/src/uscxml/plugins/datamodel/ecmascript/JavaScriptCore/JSCDataModel.cpp
index f17bc62..947c0c2 100644
--- a/src/uscxml/plugins/datamodel/ecmascript/JavaScriptCore/JSCDataModel.cpp
+++ b/src/uscxml/plugins/datamodel/ecmascript/JavaScriptCore/JSCDataModel.cpp
@@ -538,13 +538,13 @@ void JSCDataModel::assign(const Element<std::string>& assignElem,
// flags on attribute are ignored?
if (key.compare("_sessionid") == 0)
- throw Event("error.execution", Event::PLATFORM);
+ return; //throw Event("error.execution", Event::PLATFORM);
if (key.compare("_name") == 0)
- throw Event("error.execution", Event::PLATFORM);
+ return; //throw Event("error.execution", Event::PLATFORM);
if (key.compare("_ioprocessors") == 0)
- throw Event("error.execution", Event::PLATFORM);
+ return; //throw Event("error.execution", Event::PLATFORM);
if (key.compare("_invokers") == 0)
- throw Event("error.execution", Event::PLATFORM);
+ return; //throw Event("error.execution", Event::PLATFORM);
if (HAS_ATTR(assignElem, "expr")) {
evalAsValue(key + " = " + ATTR(assignElem, "expr"));