From: Carl Hetherington Date: Sun, 19 Jun 2022 23:34:56 +0000 (+0200) Subject: Adjust disk/partition sizes to trigger another bug. X-Git-Tag: v2.16.15~3 X-Git-Url: https://git.carlh.net/gitweb/?p=dcpomatic.git;a=commitdiff_plain;h=8b38c3523b061883c3d320bd2e38afffe7424f4d;ds=sidebyside Adjust disk/partition sizes to trigger another bug. --- diff --git a/test/disk_writer_test.cc b/test/disk_writer_test.cc index 481e72548..a27da0c5f 100644 --- a/test/disk_writer_test.cc +++ b/test/disk_writer_test.cc @@ -147,8 +147,8 @@ BOOST_AUTO_TEST_CASE (disk_writer_test2) cl.add(disk); cl.add(partition); - make_random_file(disk, 4LL * 1024LL * 1024LL * 1024LL); - make_random_file(partition, 4LL * 1024LL * 1024LL * 1024LL); + make_random_file(disk, 31043616768LL); + make_random_file(partition, 31043571712LL); auto const dcp = TestPaths::private_data() / "xm"; dcpomatic::write(dcp, disk.string(), partition.string(), nullptr);