1 //
2 // Copyright 2013 Christian Henning
3 //
4 // Distributed under the Boost Software License, Version 1.0
5 // See accompanying file LICENSE_1_0.txt or copy at
6 // http://www.boost.org/LICENSE_1_0.txt
7 //
8 #include <boost/gil.hpp>
9 #include <boost/gil/extension/io/tiff.hpp>
10 
11 #include <boost/core/lightweight_test.hpp>
12 
13 #include "tiff_tiled_read_macros.hpp"
14 
15 namespace gil = boost::gil;
16 
17 #ifdef BOOST_GIL_IO_USE_TIFF_GRAPHICSMAGICK_TEST_SUITE_IMAGES
18 
19 // CHH - not supported palette
20 //BOOST_PP_REPEAT_FROM_TO(1, 9, GENERATE_TILE_STRIP_COMPARISON_PALETTE, palette )
21 
main()22 int main()
23 {
24     // TODO: Make sure generated test cases are executed. See tiff_subimage_test.cpp. ~mloskot
25 
26     return boost::report_errors();
27 }
28 
29 #else
main()30 int main() {}
31 #endif // BOOST_GIL_IO_USE_TIFF_GRAPHICSMAGICK_TEST_SUITE_IMAGES
32