From 3a0447521c8167f844e1dafaf77d859816896616 Mon Sep 17 00:00:00 2001 From: Francis ANDRE Date: Fri, 1 Jun 2018 07:27:43 +0200 Subject: [PATCH] Add log clog << "p.toString(Path::PATH_VMS)=" << p.toString(Path::PATH_VMS); --- Foundation/testsuite/src/PathTest.cpp | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/Foundation/testsuite/src/PathTest.cpp b/Foundation/testsuite/src/PathTest.cpp index c9cc6ede3..2f1326489 100644 --- a/Foundation/testsuite/src/PathTest.cpp +++ b/Foundation/testsuite/src/PathTest.cpp @@ -30,6 +30,8 @@ using Poco::Path; using Poco::PathSyntaxException; using Poco::Environment; +using std::clog; +using std::endl; PathTest::PathTest(const std::string& name): CppUnit::TestCase(name) @@ -1236,6 +1238,7 @@ void PathTest::testParseVMS4() assertTrue (p[0] == "foo"); assertTrue (!p.isDirectory()); assertTrue (p.isFile()); + clog << "p.toString(Path::PATH_VMS)=" << p.toString(Path::PATH_VMS) << endl; assertTrue (p.toString(Path::PATH_VMS) == "[foo]bar.txt;5"); assertTrue (p.version() == "5"); @@ -1297,6 +1300,7 @@ void PathTest::testParseGuess() assertTrue (p.getDevice() == "foo"); assertTrue (!p.isDirectory()); assertTrue (p.isFile()); + clog << "p.toString(Path::PATH_VMS)=" << p.toString(Path::PATH_VMS) << endl; assertTrue (p.toString(Path::PATH_VMS) == "foo:bar.txt;5"); assertTrue (p.version() == "5");