summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCarl Hetherington <cth@carlh.net>2023-09-01 09:01:12 +0200
committerCarl Hetherington <cth@carlh.net>2023-09-01 09:01:12 +0200
commit503d8899c5b0f503a7c8b7abef387b3fd9332842 (patch)
treecc619dc6e133474b21879ceb9098fd3b7774e2fc
parent32d4e84bb2ed8f969e200f0a64dd7eedc6e2a093 (diff)
Missing #ifdef for Windows references.
-rw-r--r--test/burnt_subtitle_test.cc4
1 files changed, 4 insertions, 0 deletions
diff --git a/test/burnt_subtitle_test.cc b/test/burnt_subtitle_test.cc
index 734ac7148..9c6863a1d 100644
--- a/test/burnt_subtitle_test.cc
+++ b/test/burnt_subtitle_test.cc
@@ -170,7 +170,11 @@ BOOST_AUTO_TEST_CASE(burnt_subtitle_test_position)
dcp::VerificationNote::Code::MISSING_CPL_METADATA
});
+#ifdef DCPOMATIC_WINDOWS
+ check_dcp(String::compose("test/data/windows/%1", name), film);
+#else
check_dcp(String::compose("test/data/%1", name), film);
+#endif
};
/* Should have a baseline 216 pixels from the top (0.2 * 1080) */