]> granicus.if.org Git - icinga2/blob - test/CMakeLists.txt
Merge branch 'feature/dtype-5036' into next
[icinga2] / test / CMakeLists.txt
1 # Icinga 2
2 # Copyright (C) 2012-2013 Icinga Development Team (http://www.icinga.org/)
3 #
4 # This program is free software; you can redistribute it and/or
5 # modify it under the terms of the GNU General Public License
6 # as published by the Free Software Foundation; either version 2
7 # of the License, or (at your option) any later version.
8 #
9 # This program is distributed in the hope that it will be useful,
10 # but WITHOUT ANY WARRANTY; without even the implied warranty of
11 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 # GNU General Public License for more details.
13 #
14 # You should have received a copy of the GNU General Public License
15 # along with this program; if not, write to the Free Software Foundation
16 # Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA.
17
18 include(BoostTestTargets)
19
20 add_boost_test(base
21   SOURCES base-array.cpp base-convert.cpp base-dictionary.cpp base-fifo.cpp
22           base-match.cpp base-netstring.cpp base-object.cpp base-serialize.cpp
23           base-shellescape.cpp base-stacktrace.cpp base-string.cpp base-timer.cpp
24           base-type.cpp base-value.cpp icinga-perfdata.cpp test.cpp
25   LIBRARIES base config icinga
26   TESTS base_array/construct
27         base_array/getset
28         base_array/remove
29         base_array/foreach
30         base_array/clone
31         base_array/json
32         base_convert/tolong
33         base_convert/todouble
34         base_convert/tostring
35         base_convert/tobool
36         base_dictionary/construct
37         base_dictionary/get1
38         base_dictionary/get2
39         base_dictionary/foreach
40         base_dictionary/remove
41         base_dictionary/clone
42         base_dictionary/json
43         base_fifo/construct
44         base_fifo/io
45         base_match/tolong
46         base_netstring/netstring
47         base_object/construct
48         base_object/getself
49         base_object/weak
50         base_serialize/scalar
51         base_serialize/array
52         base_serialize/dictionary
53         base_serialize/object
54         base_shellescape/escape_basic
55         base_shellescape/escape_quoted
56         base_stacktrace/stacktrace
57         base_string/construct
58         base_string/equal
59         base_string/clear
60         base_string/append
61         base_string/trim
62         base_string/replace
63         base_string/index
64         base_string/find
65         base_timer/construct
66         base_timer/interval
67         base_timer/invoke
68         base_timer/scope
69         base_value/scalar
70         base_value/convert
71         base_value/format
72         icinga_perfdata/simple
73         icinga_perfdata/multiple
74         icinga_perfdata/uom
75         icinga_perfdata/warncritminmax
76         icinga_perfdata/invalid
77 )
78