summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCarl Hetherington <cth@carlh.net>2022-06-20 01:34:56 +0200
committerCarl Hetherington <cth@carlh.net>2022-06-21 18:55:16 +0200
commit8b38c3523b061883c3d320bd2e38afffe7424f4d (patch)
tree67b62eda570d8bbf4bce36fb7b068e2f297a610c
parenta88d2f3f6d52bab4d032ed0d5d02586d51a0cb9d (diff)
Adjust disk/partition sizes to trigger another bug.
-rw-r--r--test/disk_writer_test.cc4
1 files changed, 2 insertions, 2 deletions
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);