X-Git-Url: https://main.carlh.net/gitweb/?a=blobdiff_plain;f=test%2Fwscript;h=7efe6e61c9f692f594e631ab0ec97ca107ff6967;hb=d2e8a683eed6fb82d4d255fffaf571ff27057132;hp=aaa96f8980a04384bf66f8ac86a7be9e3b6fd62f;hpb=0c32e4bfd1ad6418dad2a504a4bf6cdea48f6d75;p=dcpomatic.git diff --git a/test/wscript b/test/wscript index aaa96f898..7efe6e61c 100644 --- a/test/wscript +++ b/test/wscript @@ -1,3 +1,21 @@ +# +# Copyright (C) 2012-2016 Carl Hetherington +# +# This program is free software; you can redistribute it and/or modify +# it under the terms of the GNU General Public License as published by +# the Free Software Foundation; either version 2 of the License, or +# (at your option) any later version. +# +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU General Public License for more details. +# +# You should have received a copy of the GNU General Public License +# along with this program; if not, write to the Free Software +# Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. +# + def configure(conf): boost_test_suffix='' if conf.env.TARGET_WINDOWS: @@ -12,7 +30,10 @@ def configure(conf): def build(bld): obj = bld(features='cxx cxxprogram') obj.name = 'unit-tests' - obj.uselib = 'BOOST_TEST BOOST_THREAD DCP OPENJPEG AVFORMAT AVFILTER AVCODEC AVUTIL SWSCALE POSTPROC CXML MAGICK SUB' + obj.uselib = 'BOOST_TEST BOOST_THREAD BOOST_FILESYSTEM BOOST_DATETIME SNDFILE SAMPLERATE DCP FONTCONFIG CAIROMM PANGOMM XMLPP ' + obj.uselib += 'AVFORMAT AVFILTER AVCODEC AVUTIL SWSCALE POSTPROC CXML MAGICK SUB GLIB CURL SSH XMLSEC BOOST_REGEX ICU ' + if bld.env.TARGET_WINDOWS: + obj.uselib += 'WINSOCK2' obj.use = 'libdcpomatic2' obj.source = """ 4k_test.cc @@ -22,10 +43,13 @@ def build(bld): audio_decoder_test.cc audio_filter_test.cc audio_mapping_test.cc + audio_processor_test.cc + audio_processor_delay_test.cc black_fill_test.cc client_server_test.cc colour_conversion_test.cc dcp_subtitle_test.cc + dcpomatic_time_test.cc ffmpeg_audio_test.cc ffmpeg_dcp_test.cc ffmpeg_decoder_seek_test.cc @@ -36,6 +60,7 @@ def build(bld): file_log_test.cc film_metadata_test.cc frame_rate_test.cc + image_filename_sorter_test.cc image_test.cc import_dcp_test.cc isdcf_name_test.cc @@ -46,34 +71,31 @@ def build(bld): ratio_test.cc repeat_frame_test.cc recover_test.cc + rect_test.cc + reels_test.cc + required_disk_space_test.cc resampler_test.cc scaling_test.cc seek_zero_test.cc silence_padding_test.cc skip_frame_test.cc + srt_subtitle_test.cc stream_test.cc test.cc threed_test.cc + time_calculation_test.cc + update_checker_test.cc upmixer_a_test.cc util_test.cc + vf_test.cc + video_content_scale_test.cc video_decoder_fill_test.cc xml_subtitle_test.cc """ # Disabled tests: some difference in font rendering between the test machine # and others... - # subrip_test.cc burnt_subtitle_test.cc + # burnt_subtitle_test.cc obj.target = 'unit-tests' obj.install_path = '' - - obj = bld(features='cxx cxxprogram') - obj.name = 'long-unit-tests' - obj.uselib = 'BOOST_TEST DCP OPENJPEG AVFORMAT AVFILTER AVCODEC AVUTIL SWSCALE POSTPROC CXML SUB' - obj.use = 'libdcpomatic2' - obj.source = """ - test.cc - """ - - obj.target = 'long-unit-tests' - obj.install_path = ''