More <iostream> includes for Arch.
[dcpomatic.git] / test / file_log_test.cc
index 4769503c1314f0f8f5682ba686de28451c835911..0d60753fd487c8208b99a45edd488355d1b223d3 100644 (file)
 
 */
 
+#include "lib/file_log.h"
 #include <boost/test/unit_test.hpp>
-#include "lib/log.h"
+#include <iostream>
 
 using std::cout;
 
 BOOST_AUTO_TEST_CASE (file_log_test)
 {
        FileLog log ("test/data/short.log");
-       BOOST_CHECK_EQUAL (log.head_and_tail(), "This is a short log.\nWith only two lines.\n");
+       BOOST_CHECK_EQUAL (log.head_and_tail (1024), "This is a short log.\nWith only two lines.\n");
+       BOOST_CHECK_EQUAL (log.head_and_tail (8), "This is \n .\n .\n .\no lines.\n");
 }