Add LEQ(m) when analysing audio (#1382).
[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     obj.uselib += 'LEQM_NRT '
41     if bld.env.TARGET_WINDOWS:
42         obj.uselib += 'WINSOCK2 DBGHELP SHLWAPI MSWSOCK BOOST_LOCALE '
43     if bld.env.TARGET_LINUX:
44         obj.uselib += 'DL '
45     obj.use    = 'libdcpomatic2'
46     obj.source = """
47                  4k_test.cc
48                  audio_analysis_test.cc
49                  audio_buffers_test.cc
50                  audio_delay_test.cc
51                  audio_filter_test.cc
52                  audio_mapping_test.cc
53                  audio_merger_test.cc
54                  audio_processor_test.cc
55                  audio_processor_delay_test.cc
56                  audio_ring_buffers_test.cc
57                  butler_test.cc
58                  cinema_sound_processor_test.cc
59                  client_server_test.cc
60                  closed_caption_test.cc
61                  colour_conversion_test.cc
62                  config_test.cc
63                  content_test.cc
64                  create_cli_test.cc
65                  crypto_test.cc
66                  dcpomatic_time_test.cc
67                  dcp_decoder_test.cc
68                  dcp_playback_test.cc
69                  dcp_subtitle_test.cc
70                  digest_test.cc
71                  ecinema_kdm_test.cc
72                  empty_test.cc
73                  ffmpeg_audio_only_test.cc
74                  ffmpeg_audio_test.cc
75                  ffmpeg_dcp_test.cc
76                  ffmpeg_decoder_seek_test.cc
77                  ffmpeg_decoder_sequential_test.cc
78                  ffmpeg_encoder_test.cc
79                  ffmpeg_examiner_test.cc
80                  ffmpeg_pts_offset_test.cc
81                  file_group_test.cc
82                  file_log_test.cc
83                  file_naming_test.cc
84                  film_metadata_test.cc
85                  frame_interval_checker_test.cc
86                  frame_rate_test.cc
87                  image_content_fade_test.cc
88                  image_filename_sorter_test.cc
89                  image_test.cc
90                  import_dcp_test.cc
91                  interrupt_encoder_test.cc
92                  isdcf_name_test.cc
93                  j2k_bandwidth_test.cc
94                  job_test.cc
95                  make_black_test.cc
96                  optimise_stills_test.cc
97                  pixel_formats_test.cc
98                  player_test.cc
99                  ratio_test.cc
100                  repeat_frame_test.cc
101                  recover_test.cc
102                  rect_test.cc
103                  reels_test.cc
104                  reel_writer_test.cc
105                  required_disk_space_test.cc
106                  remake_id_test.cc
107                  remake_with_subtitle_test.cc
108                  render_subtitles_test.cc
109                  scaling_test.cc
110                  silence_padding_test.cc
111                  shuffler_test.cc
112                  skip_frame_test.cc
113                  socket_test.cc
114                  srt_subtitle_test.cc
115                  ssa_subtitle_test.cc
116                  stream_test.cc
117                  subtitle_charset_test.cc
118                  subtitle_reel_test.cc
119                  subtitle_reel_number_test.cc
120                  subtitle_trim_test.cc
121                  test.cc
122                  threed_test.cc
123                  time_calculation_test.cc
124                  torture_test.cc
125                  update_checker_test.cc
126                  upmixer_a_test.cc
127                  util_test.cc
128                  vf_test.cc
129                  video_content_scale_test.cc
130                  video_mxf_content_test.cc
131                  vf_kdm_test.cc
132                  """
133
134     # Some difference in font rendering between the test machine and others...
135     # burnt_subtitle_test.cc
136     # This one doesn't check anything
137     # resampler_test.cc
138
139     obj.target = 'unit-tests'
140     obj.install_path = ''