summaryrefslogtreecommitdiffstats
path: root/test
diff options
context:
space:
mode:
authorStefan Radomski <github@mintwerk.de>2016-12-09 12:54:46 (GMT)
committerStefan Radomski <github@mintwerk.de>2016-12-09 12:54:46 (GMT)
commit1e56658c2415d154428fe419d8f0134c59856b6e (patch)
tree2122ec471af63ec0549fb28973a68f9dfaf10f8a /test
parent9b8e09c3fde755ec26e5c21b9640f53ed9329d05 (diff)
downloaduscxml-1e56658c2415d154428fe419d8f0134c59856b6e.zip
uscxml-1e56658c2415d154428fe419d8f0134c59856b6e.tar.gz
uscxml-1e56658c2415d154428fe419d8f0134c59856b6e.tar.bz2
Oh how I despise MSVC
Diffstat (limited to 'test')
-rw-r--r--test/src/test-stress.cpp2
-rw-r--r--test/src/test-url.cpp2
2 files changed, 2 insertions, 2 deletions
diff --git a/test/src/test-stress.cpp b/test/src/test-stress.cpp
index 6312ae4..d3253b4 100644
--- a/test/src/test-stress.cpp
+++ b/test/src/test-stress.cpp
@@ -79,7 +79,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");
- LOG(INFO) << "Processing " << interpreter.getImpl()->getBaseURL();
+ LOG(USCXML_INFO) << "Processing " << interpreter.getImpl()->getBaseURL();
if (interpreter) {
interpreter.addMonitor(&vm);
diff --git a/test/src/test-url.cpp b/test/src/test-url.cpp
index 3d46c03..94c47e9 100644
--- a/test/src/test-url.cpp
+++ b/test/src/test-url.cpp
@@ -145,7 +145,7 @@ int main(int argc, char** argv) {
try {
testFileURLs();
} catch (Event e) {
- LOG(ERROR) << e;
+ LOG(USCXML_ERROR) << e;
exit(EXIT_FAILURE);
}