summaryrefslogtreecommitdiffstats
path: root/test
diff options
context:
space:
mode:
authorStefan Radomski <radomski@tk.informatik.tu-darmstadt.de>2014-08-22 10:46:02 (GMT)
committerStefan Radomski <radomski@tk.informatik.tu-darmstadt.de>2014-08-22 10:46:02 (GMT)
commitd6fa07c2b4b3eb0c8db4f79927f88de72892dcc2 (patch)
tree8fffadcf042cb1a90468ee218956d67383c85e84 /test
parentb3c7a989ebf1ac9342d17a1130e99663d7471cdf (diff)
downloaduscxml-d6fa07c2b4b3eb0c8db4f79927f88de72892dcc2.zip
uscxml-d6fa07c2b4b3eb0c8db4f79927f88de72892dcc2.tar.gz
uscxml-d6fa07c2b4b3eb0c8db4f79927f88de72892dcc2.tar.bz2
Corrected for a MSVC compiler bug and more tests in validate()
Diffstat (limited to 'test')
-rw-r--r--test/src/test-w3c.cpp8
1 files changed, 8 insertions, 0 deletions
diff --git a/test/src/test-w3c.cpp b/test/src/test-w3c.cpp
index 6a3294d..4bd27b1 100644
--- a/test/src/test-w3c.cpp
+++ b/test/src/test-w3c.cpp
@@ -202,6 +202,14 @@ int main(int argc, char** argv) {
}
if (interpreter) {
+// std::list<InterpreterIssue> issues = interpreter.validate();
+// if (issues.size() > 0) {
+// for (std::list<InterpreterIssue>::iterator issueIter = issues.begin(); issueIter != issues.end(); issueIter++) {
+// std::cout << *issueIter << std::endl;
+// }
+// exit(EXIT_FAILURE);
+// }
+
// interpreter.setCmdLineOptions(argc, argv);
// interpreter->setCapabilities(Interpreter::CAN_NOTHING);
// interpreter->setCapabilities(Interpreter::CAN_BASIC_HTTP | Interpreter::CAN_GENERIC_HTTP);