2
0
mirror of https://github.com/boostorg/gil.git synced 2026-01-28 07:12:14 +00:00
Files
gil/test/extension/io/tiff/tiff_write_test.cpp
Mateusz Łoskot 70ff5648d0 Replace Boost.Test with Boost.LightweightTest in test/extension/io (#464)
Move test sources to format-specific directories.
Add FIXME and TODO comments about issues discovered while building the format-specific tests.
Add missing `#include`-s with standard library headers.
Apply minor corrections and tidying up.

Continues #459
Closes #461
2020-03-24 10:21:20 +01:00

32 lines
718 B
C++

//
// Copyright 2013 Christian Henning
//
// Distributed under the Boost Software License, Version 1.0
// See accompanying file LICENSE_1_0.txt or copy at
// http://www.boost.org/LICENSE_1_0.txt
//
#include <boost/gil.hpp>
#include <boost/gil/extension/io/tiff.hpp>
#include <boost/gil/io/typedefs.hpp>
#include <boost/core/lightweight_test.hpp>
#include "color_space_write_test.hpp"
#include "mandel_view.hpp"
#include "paths.hpp"
namespace gil = boost::gil;
void test_rgb_color_space_write()
{
color_space_write_test<gil::tiff_tag>(
tiff_out + "rgb_color_space_test.tif", tiff_out + "bgr_color_space_test.tif");
}
int main()
{
test_rgb_color_space_write();
return boost::report_errors();
}