summaryrefslogtreecommitdiffstats
path: root/test/src/test-stress.cpp
diff options
context:
space:
mode:
authorStefan Radomski <github@mintwerk.de>2016-06-18 11:55:39 (GMT)
committerStefan Radomski <github@mintwerk.de>2016-06-18 11:55:39 (GMT)
commit0e0be07906a720ae54e4572d6ac0cb657424550d (patch)
tree7d48c87a9142a5dad06570ca4daf0212475d83f1 /test/src/test-stress.cpp
parent84bbbd42c3480c40c0355c64899f99f8d588d5c0 (diff)
downloaduscxml-0e0be07906a720ae54e4572d6ac0cb657424550d.zip
uscxml-0e0be07906a720ae54e4572d6ac0cb657424550d.tar.gz
uscxml-0e0be07906a720ae54e4572d6ac0cb657424550d.tar.bz2
Started to port Debugger and issue 87
Diffstat (limited to 'test/src/test-stress.cpp')
-rw-r--r--test/src/test-stress.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/test/src/test-stress.cpp b/test/src/test-stress.cpp
index 8bd2e4a..dc54f4e 100644
--- a/test/src/test-stress.cpp
+++ b/test/src/test-stress.cpp
@@ -16,7 +16,7 @@ int startedAt;
int lastTransitionAt;
class StatusMonitor : public uscxml::InterpreterMonitor {
- void beforeTakingTransition(const XERCESC_NS::DOMElement* transition) {
+ void beforeTakingTransition(uscxml::InterpreterImpl* impl, const XERCESC_NS::DOMElement* transition) {
lastTransitionAt = time(NULL);
}
@@ -81,7 +81,7 @@ int main(int argc, char** argv) {
LOG(INFO) << "Processing " << interpreter.getImpl()->getBaseURL();
if (interpreter) {
- interpreter.setMonitor(&vm);
+ interpreter.addMonitor(&vm);
InterpreterState state = InterpreterState::USCXML_UNDEF;
int now = time(NULL);