]> granicus.if.org Git - icinga2/blob - test/CMakeLists.txt
Change copyright header (again).
[icinga2] / test / CMakeLists.txt
1 # Icinga 2
2 # Copyright (C) 2012-2014 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-stream.cpp
24           base-string.cpp base-timer.cpp base-type.cpp base-value.cpp
25           icinga-perfdata.cpp test.cpp
26   LIBRARIES base config icinga
27   TESTS base_array/construct
28         base_array/getset
29         base_array/insert
30         base_array/remove
31         base_array/foreach
32         base_array/clone
33         base_array/json
34         base_convert/tolong
35         base_convert/todouble
36         base_convert/tostring
37         base_convert/tobool
38         base_dictionary/construct
39         base_dictionary/get1
40         base_dictionary/get2
41         base_dictionary/foreach
42         base_dictionary/remove
43         base_dictionary/clone
44         base_dictionary/json
45         base_fifo/construct
46         base_fifo/io
47         base_match/tolong
48         base_netstring/netstring
49         base_object/construct
50         base_object/getself
51         base_object/weak
52         base_serialize/scalar
53         base_serialize/array
54         base_serialize/dictionary
55         base_serialize/object
56         base_shellescape/escape_basic
57         base_shellescape/escape_quoted
58         base_stacktrace/stacktrace
59         base_stream/readline_stdio
60         base_string/construct
61         base_string/equal
62         base_string/clear
63         base_string/append
64         base_string/trim
65         base_string/contains
66         base_string/replace
67         base_string/index
68         base_string/find
69         base_timer/construct
70         base_timer/interval
71         base_timer/invoke
72         base_timer/scope
73         base_value/scalar
74         base_value/convert
75         base_value/format
76         icinga_perfdata/simple
77         icinga_perfdata/multiple
78         icinga_perfdata/uom
79         icinga_perfdata/warncritminmax
80         icinga_perfdata/invalid
81 )
82