Split off 'simple' IO test and use it in CI testing.

This commit is contained in:
Stefan Seefeld 2017-11-16 18:23:38 -05:00
parent 8c9908058e
commit 8096158c92
3 changed files with 7 additions and 4 deletions

View File

@ -67,4 +67,6 @@ build: off
test_script:
- PATH=%ADDPATH%%PATH%
- b2 libs/gil/test toolset=%TOOLSET% %CXXFLAGS%
- b2 address-model=%AM% libs/gil/test toolset=%TOOLSET% %CXXFLAGS%
- b2 address-model=%AM% libs/gil/io/test//simple -spng-prefix=%APPVEYOR_BUILD_FOLDER%/../vcpkg/installed/%TRIPLET% -stiff-prefix=%APPVEYOR_BUILD_FOLDER%/../vcpkg/installed/%TRIPLET% -sjpeg-prefix=%APPVEYOR_BUILD_FOLDER%/../vcpkg/installed/%TRIPLET% -slibpng=libpng16 -szlib=zlib toolset=%TOOLSET% %CXXFLAGS%
- b2 address-model=%AM% libs/gil/toolbox/test toolset=%TOOLSET% %CXXFLAGS%

View File

@ -302,7 +302,7 @@ script:
- |-
echo "using $TOOLSET : : $COMPILER : <cxxflags>-std=$CXXSTD ;" > ~/user-config.jam
- ./b2 libs/gil/test toolset=$TOOLSET
- ./b2 libs/gil/io/test toolset=$TOOLSET
- ./b2 libs/gil/io/test//simple toolset=$TOOLSET
- ./b2 libs/gil/toolbox/test toolset=$TOOLSET
notifications:

View File

@ -40,8 +40,9 @@ project
<library>/boost/filesystem//boost_filesystem
;
test-suite "gil::io" :
[ run all_formats_test.cpp png zlib jpeg tiff ]
test-suite simple : [ run all_formats_test.cpp png zlib jpeg tiff ] ;
test-suite full :
[ run bmp_test.cpp bmp_old_test.cpp bmp_read_test.cpp bmp_write_test.cpp ]
[ run jpeg_test.cpp jpeg_old_test.cpp jpeg_read_test.cpp jpeg_write_test.cpp jpeg ]
#make.cpp