blob: e4a391f8be445d14f553cd9f249ae6d0ea0b9109 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
|
#
# Copyright (C) 2012-2016 Carl Hetherington <cth@carlh.net>
#
# This file is part of DCP-o-matic.
#
# DCP-o-matic 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.
#
# DCP-o-matic 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 DCP-o-matic. If not, see <http://www.gnu.org/licenses/>.
#
def configure(conf):
boost_test_suffix=''
if conf.env.TARGET_WINDOWS:
boost_test_suffix='-mt'
conf.check_cfg(package='sndfile', args='--cflags --libs', uselib_store='SNDFILE', mandatory=True)
conf.check_cxx(fragment="""
#define BOOST_TEST_MODULE Config test\n
#include <boost/test/unit_test.hpp>\n
int main() {}
""", msg = 'Checking for boost unit testing library', lib = 'boost_unit_test_framework%s' % boost_test_suffix, uselib_store = 'BOOST_TEST')
def build(bld):
obj = bld(features='cxx cxxprogram')
obj.name = 'unit-tests'
obj.uselib = 'BOOST_TEST BOOST_THREAD BOOST_FILESYSTEM BOOST_DATETIME SNDFILE SAMPLERATE DCP FONTCONFIG CAIROMM PANGOMM XMLPP '
obj.uselib += 'AVFORMAT AVFILTER AVCODEC AVUTIL SWSCALE SWRESAMPLE POSTPROC CXML MAGICK SUB GLIB CURL SSH XMLSEC BOOST_REGEX ICU NETTLE '
if bld.env.TARGET_WINDOWS:
obj.uselib += 'WINSOCK2 BFD DBGHELP IBERTY SHLWAPI MSWSOCK BOOST_LOCALE '
obj.use = 'libdcpomatic2'
obj.source = """
4k_test.cc
audio_analysis_test.cc
audio_buffers_test.cc
audio_delay_test.cc
audio_filter_test.cc
audio_mapping_test.cc
audio_merger_test.cc
audio_processor_test.cc
audio_processor_delay_test.cc
audio_ring_buffers_test.cc
butler_test.cc
client_server_test.cc
colour_conversion_test.cc
content_test.cc
dcpomatic_time_test.cc
dcp_subtitle_test.cc
digest_test.cc
empty_test.cc
ffmpeg_audio_only_test.cc
ffmpeg_audio_test.cc
ffmpeg_dcp_test.cc
ffmpeg_decoder_seek_test.cc
ffmpeg_decoder_sequential_test.cc
ffmpeg_encoder_test.cc
ffmpeg_examiner_test.cc
ffmpeg_pts_offset_test.cc
file_group_test.cc
file_log_test.cc
file_naming_test.cc
film_metadata_test.cc
frame_rate_test.cc
image_filename_sorter_test.cc
image_test.cc
import_dcp_test.cc
interrupt_encoder_test.cc
isdcf_name_test.cc
j2k_bandwidth_test.cc
job_test.cc
make_black_test.cc
optimise_stills_test.cc
pixel_formats_test.cc
player_test.cc
ratio_test.cc
repeat_frame_test.cc
recover_test.cc
rect_test.cc
reels_test.cc
required_disk_space_test.cc
render_subtitles_test.cc
scaling_test.cc
silence_padding_test.cc
skip_frame_test.cc
srt_subtitle_test.cc
ssa_subtitle_test.cc
stream_test.cc
subtitle_reel_number_test.cc
test.cc
threed_test.cc
time_calculation_test.cc
torture_test.cc
update_checker_test.cc
upmixer_a_test.cc
util_test.cc
vf_test.cc
video_content_scale_test.cc
video_mxf_content_test.cc
vf_kdm_test.cc
"""
# Some difference in font rendering between the test machine and others...
# burnt_subtitle_test.cc
# This one doesn't check anything
# resampler_test.cc
obj.target = 'unit-tests'
obj.install_path = ''
|