summaryrefslogtreecommitdiff
path: root/test/scaling_test.cc
diff options
context:
space:
mode:
authorCarl Hetherington <cth@carlh.net>2015-06-18 14:29:25 +0100
committerCarl Hetherington <cth@carlh.net>2015-06-18 14:29:25 +0100
commitf030e63e223379c25d049d66f9ddd2c779619cec (patch)
treeea4b34f317f525ebc90939d0b3a7fb1249803306 /test/scaling_test.cc
parent34c6465e14a9654c01e32bcb54a59ff35dc551f9 (diff)
Some comments in tests.
Diffstat (limited to 'test/scaling_test.cc')
-rw-r--r--test/scaling_test.cc6
1 files changed, 6 insertions, 0 deletions
diff --git a/test/scaling_test.cc b/test/scaling_test.cc
index 105683ad1..8d9df8977 100644
--- a/test/scaling_test.cc
+++ b/test/scaling_test.cc
@@ -66,12 +66,18 @@ BOOST_AUTO_TEST_CASE (scaling_test)
imc->set_video_length (1);
+ /* F-133: 133 image in a flat container */
scaling_test_for (film, imc, "133", "185");
+ /* F: flat image in a flat container */
scaling_test_for (film, imc, "185", "185");
+ /* F-S: scope image in a flat container */
scaling_test_for (film, imc, "239", "185");
+ /* S-133: 133 image in a scope container */
scaling_test_for (film, imc, "133", "239");
+ /* S-F: flat image in a scope container */
scaling_test_for (film, imc, "185", "239");
+ /* S: scope image in a scope container */
scaling_test_for (film, imc, "239", "239");
}