Skip to content

Commit de76faf

Browse files
committed
Debug.
1 parent fdd8a57 commit de76faf

File tree

1 file changed

+12
-4
lines changed

1 file changed

+12
-4
lines changed

pdal/test/PythonFilterTest.cpp

Lines changed: 12 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -780,6 +780,9 @@ TEST(PLangTest, log)
780780
{
781781
// verify we can redirect the stdout inside the python script
782782

783+
std::string logfile("mylog_three.txt");
784+
// std::string logfile(Support::temppath("mylog_three.txt"));
785+
783786
Options reader_opts;
784787
{
785788
BOX3D bounds(1.0, 2.0, 3.0, 101.0, 102.0, 103.0);
@@ -791,7 +794,7 @@ TEST(PLangTest, log)
791794
reader_opts.add(opt2);
792795
reader_opts.add(opt3);
793796

794-
Option optlog("log", Support::temppath("mylog_three.txt"));
797+
Option optlog("log", logfile);
795798
reader_opts.add(optlog);
796799
}
797800

@@ -810,7 +813,7 @@ TEST(PLangTest, log)
810813
);
811814
const Option module("module", "xModule");
812815
const Option function("function", "xfunc");
813-
xfilter_opts.add("log", Support::temppath("mylog_three.txt"));
816+
xfilter_opts.add("log", logfile);
814817
xfilter_opts.add(source);
815818
xfilter_opts.add(module);
816819
xfilter_opts.add(function);
@@ -834,9 +837,14 @@ TEST(PLangTest, log)
834837
EXPECT_EQ(view->size(), 750u);
835838
}
836839

837-
bool ok = Support::compare_text_files(
838-
Support::temppath("mylog_three.txt"),
840+
if (FileUtils::fileExists(logfile))
841+
std::cerr << "File exists!\n";
842+
else
843+
std::cerr << "File doesn't exist!\n";
844+
/**
845+
bool ok = Support::compare_text_files(logfile,
839846
Support::datapath("logs/log_py.txt"));
847+
**/
840848

841849
// TODO: fails on Windows
842850
// unknown file: error: C++ exception with description "pdalboost::filesystem::remove:

0 commit comments

Comments
 (0)