]> granicus.if.org Git - icinga2/blob - test/CMakeLists.txt
Merge branch 'feature/perfdata-2710' 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-shellescape.cpp
23           base-stacktrace.cpp base-string.cpp base-timer.cpp base-value.cpp
24           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/serialize
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/serialize
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_shellescape/escape_basic
51         base_shellescape/escape_quoted
52         base_stacktrace/stacktrace
53         base_string/construct
54         base_string/equal
55         base_string/clear
56         base_string/append
57         base_string/trim
58         base_string/replace
59         base_string/index
60         base_string/find
61         base_timer/construct
62         base_timer/interval
63         base_timer/invoke
64         base_timer/scope
65         base_value/scalar
66         base_value/convert
67         base_value/format
68         icinga_perfdata/simple
69         icinga_perfdata/multiple
70         icinga_perfdata/uom
71         icinga_perfdata/warncrit
72         icinga_perfdata/minmax
73         icinga_perfdata/invalid
74 )
75