summaryrefslogtreecommitdiffstats
path: root/test/src
diff options
context:
space:
mode:
authorStefan Radomski <github@mintwerk.de>2017-04-27 07:27:08 (GMT)
committerStefan Radomski <github@mintwerk.de>2017-04-27 07:27:08 (GMT)
commita925b941c640289ffd967cab457ab804de69399a (patch)
treefc9b769c18b94e0ab80a669e1af1103d71507828 /test/src
parent33a817259588101ba9d4bcab8e73d3fe1759a196 (diff)
downloaduscxml-a925b941c640289ffd967cab457ab804de69399a.zip
uscxml-a925b941c640289ffd967cab457ab804de69399a.tar.gz
uscxml-a925b941c640289ffd967cab457ab804de69399a.tar.bz2
Added explicit newline to most logs
Diffstat (limited to 'test/src')
-rw-r--r--test/src/test-serialization.cpp2
-rw-r--r--test/src/test-snippets.cpp2
-rw-r--r--test/src/test-stress.cpp2
3 files changed, 3 insertions, 3 deletions
diff --git a/test/src/test-serialization.cpp b/test/src/test-serialization.cpp
index 9acca09..a833eef 100644
--- a/test/src/test-serialization.cpp
+++ b/test/src/test-serialization.cpp
@@ -95,7 +95,7 @@ int main(int argc, char** argv) {
sourceXML = "/Users/sradomski/Documents/TK/Code/uscxml/test/w3c/ecma/test557.scxml";
Interpreter interpreter = Interpreter::fromURL(sourceXML);
- LOGD(USCXML_INFO) << "Processing " << interpreter.getImpl()->getBaseURL();
+ LOGD(USCXML_INFO) << "Processing " << interpreter.getImpl()->getBaseURL() << std::endl;
if (interpreter) {
interpreter.addMonitor(&vm);
diff --git a/test/src/test-snippets.cpp b/test/src/test-snippets.cpp
index 968d65d..40b581b 100644
--- a/test/src/test-snippets.cpp
+++ b/test/src/test-snippets.cpp
@@ -32,6 +32,6 @@ void microstep_snippet() {
}
int main(int argc, char** argv) {
- Logger::getDefault().log(USCXML_FATAL) << "Foo!" << " BAR?";
+ Logger::getDefault().log(USCXML_FATAL) << "Foo!" << " BAR?" << std::endl;
microstep_snippet();
}
diff --git a/test/src/test-stress.cpp b/test/src/test-stress.cpp
index 1f8d8ef..4d395ab 100644
--- a/test/src/test-stress.cpp
+++ b/test/src/test-stress.cpp
@@ -81,7 +81,7 @@ int main(int argc, char** argv) {
Interpreter interpreter = Interpreter::fromURL(std::string(argv[optind]) + PATH_SEPERATOR + entryIter->first);
// Interpreter interpreter = Interpreter::fromURL("/Users/sradomski/Documents/TK/Code/uscxml/test/w3c/ecma/test422.scxml");
- LOGD(USCXML_INFO) << "Processing " << interpreter.getImpl()->getBaseURL();
+ LOGD(USCXML_INFO) << "Processing " << interpreter.getImpl()->getBaseURL() << std::endl;
if (interpreter) {
interpreter.addMonitor(&vm);