Fix crash with sub-sample push parts in AudioMerger.
[dcpomatic.git] / test / wscript
1 #
2 #    Copyright (C) 2012-2016 Carl Hetherington <cth@carlh.net>
3 #
4 #    This file is part of DCP-o-matic.
5 #
6 #    DCP-o-matic is free software; you can redistribute it and/or modify
7 #    it under the terms of the GNU General Public License as published by
8 #    the Free Software Foundation; either version 2 of the License, or
9 #    (at your option) any later version.
10 #
11 #    DCP-o-matic is distributed in the hope that it will be useful,
12 #    but WITHOUT ANY WARRANTY; without even the implied warranty of
13 #    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14 #    GNU General Public License for more details.
15 #
16 #    You should have received a copy of the GNU General Public License
17 #    along with DCP-o-matic.  If not, see <http://www.gnu.org/licenses/>.
18 #
19
20 def configure(conf):
21     boost_test_suffix=''
22     if conf.env.TARGET_WINDOWS:
23         boost_test_suffix='-mt'
24
25     conf.check_cfg(package='sndfile', args='--cflags --libs', uselib_store='SNDFILE', mandatory=True)
26
27     conf.check_cxx(fragment="""
28                             #define BOOST_TEST_MODULE Config test\n
29                             #include <boost/test/unit_test.hpp>\n
30                             int main() {}
31                             """, msg = 'Checking for boost unit testing library', lib = 'boost_unit_test_framework%s' % boost_test_suffix, uselib_store = 'BOOST_TEST')
32
33     conf.check_cfg(package='ImageMagick++', args='--cflags --libs', uselib_store='MAGICK', mandatory=True)
34
35 def build(bld):
36     obj = bld(features='cxx cxxprogram')
37     obj.name   = 'unit-tests'
38     obj.uselib =  'BOOST_TEST BOOST_THREAD BOOST_FILESYSTEM BOOST_DATETIME SNDFILE SAMPLERATE DCP FONTCONFIG CAIROMM PANGOMM XMLPP '
39     obj.uselib += 'AVFORMAT AVFILTER AVCODEC AVUTIL SWSCALE SWRESAMPLE POSTPROC CXML SUB GLIB CURL SSH XMLSEC BOOST_REGEX ICU NETTLE MAGICK PNG '
40     if bld.env.TARGET_WINDOWS:
41         obj.uselib += 'WINSOCK2 DBGHELP SHLWAPI MSWSOCK BOOST_LOCALE '
42     obj.use    = 'libdcpomatic2'
43     obj.source = """
44                  4k_test.cc
45                  audio_analysis_test.cc
46                  audio_buffers_test.cc
47                  audio_delay_test.cc
48                  audio_filter_test.cc
49                  audio_mapping_test.cc
50                  audio_merger_test.cc
51                  audio_processor_test.cc
52                  audio_processor_delay_test.cc
53                  audio_ring_buffers_test.cc
54                  butler_test.cc
55                  cinema_sound_processor_test.cc
56                  client_server_test.cc
57                  closed_caption_test.cc
58                  colour_conversion_test.cc
59                  config_test.cc
60                  content_test.cc
61                  create_cli_test.cc
62                  crypto_test.cc
63                  dcpomatic_time_test.cc
64                  dcp_decoder_test.cc
65                  dcp_playback_test.cc
66                  dcp_subtitle_test.cc
67                  digest_test.cc
68                  ecinema_kdm_test.cc
69                  empty_test.cc
70                  ffmpeg_audio_only_test.cc
71                  ffmpeg_audio_test.cc
72                  ffmpeg_dcp_test.cc
73                  ffmpeg_decoder_seek_test.cc
74                  ffmpeg_decoder_sequential_test.cc
75                  ffmpeg_encoder_test.cc
76                  ffmpeg_examiner_test.cc
77                  ffmpeg_pts_offset_test.cc
78                  file_group_test.cc
79                  file_log_test.cc
80                  file_naming_test.cc
81                  film_metadata_test.cc
82                  frame_rate_test.cc
83                  image_content_fade_test.cc
84                  image_filename_sorter_test.cc
85                  image_test.cc
86                  import_dcp_test.cc
87                  interrupt_encoder_test.cc
88                  isdcf_name_test.cc
89                  j2k_bandwidth_test.cc
90                  job_test.cc
91                  make_black_test.cc
92                  optimise_stills_test.cc
93                  pixel_formats_test.cc
94                  player_test.cc
95                  ratio_test.cc
96                  repeat_frame_test.cc
97                  recover_test.cc
98                  rect_test.cc
99                  reels_test.cc
100                  reel_writer_test.cc
101                  required_disk_space_test.cc
102                  remake_id_test.cc
103                  remake_with_subtitle_test.cc
104                  render_subtitles_test.cc
105                  scaling_test.cc
106                  silence_padding_test.cc
107                  shuffler_test.cc
108                  skip_frame_test.cc
109                  srt_subtitle_test.cc
110                  ssa_subtitle_test.cc
111                  stream_test.cc
112                  subtitle_charset_test.cc
113                  subtitle_reel_test.cc
114                  subtitle_reel_number_test.cc
115                  subtitle_trim_test.cc
116                  test.cc
117                  threed_test.cc
118                  time_calculation_test.cc
119                  torture_test.cc
120                  update_checker_test.cc
121                  upmixer_a_test.cc
122                  util_test.cc
123                  vf_test.cc
124                  video_content_scale_test.cc
125                  video_mxf_content_test.cc
126                  vf_kdm_test.cc
127                  """
128
129     # Some difference in font rendering between the test machine and others...
130     # burnt_subtitle_test.cc
131     # This one doesn't check anything
132     # resampler_test.cc
133
134     obj.target = 'unit-tests'
135     obj.install_path = ''