X-Git-Url: https://main.carlh.net/gitweb/?a=blobdiff_plain;f=test%2Ffile_log_test.cc;h=a587b87efa25c5e495f0436743ce8d93034cf2e3;hb=c4de6ff891362e0336cbce07268dbc9964f0fc3e;hp=4769503c1314f0f8f5682ba686de28451c835911;hpb=009e4abb14cfcaecc0de8fab179adc7bd5feffd4;p=dcpomatic.git diff --git a/test/file_log_test.cc b/test/file_log_test.cc index 4769503c1..a587b87ef 100644 --- a/test/file_log_test.cc +++ b/test/file_log_test.cc @@ -25,5 +25,6 @@ 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"); }