summaryrefslogtreecommitdiff
path: root/tests/test-Handles.cc
diff options
context:
space:
mode:
Diffstat (limited to 'tests/test-Handles.cc')
-rw-r--r--tests/test-Handles.cc10
1 files changed, 9 insertions, 1 deletions
diff --git a/tests/test-Handles.cc b/tests/test-Handles.cc
index 38b020b..68d8baa 100644
--- a/tests/test-Handles.cc
+++ b/tests/test-Handles.cc
@@ -17,6 +17,14 @@ void MainTask::Do() {
}
Assert(failed);
IO i(new Input("Makefile"));
-
+ Printer::log(M_STATUS, "Opened file %s:", i->getName());
+ Printer::log(M_STATUS, " - size = %lli", i->getSize());
+ char mtimestr[32];
+ time_t mtime = i->getMTime();
+ ctime_r(&mtime, mtimestr);
+ char * nl = strrchr(mtimestr, '\n');
+ if (nl)
+ *nl = 0;
+ Printer::log(M_STATUS, " - mtime = %i (%s)", mtime, mtimestr);
Printer::log(M_STATUS, "Test::Handles passed.");
}