]> granicus.if.org Git - icinga2/blob - test/CMakeLists.txt
Additional fixes for log table including test queries.
[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 base-match.cpp base-netstring.cpp base-object.cpp base-shellescape.cpp base-stacktrace.cpp base-string.cpp base-timer.cpp base-value.cpp test.cpp
22   LIBRARIES base
23   TESTS base_array/construct
24         base_array/getset
25         base_array/remove
26         base_array/foreach
27         base_array/clone
28         base_array/serialize
29         base_convert/tolong
30         base_convert/todouble
31         base_convert/tostring
32         base_convert/tobool
33         base_dictionary/construct
34         base_dictionary/get1
35         base_dictionary/get2
36         base_dictionary/foreach
37         base_dictionary/remove
38         base_dictionary/clone
39         base_dictionary/serialize
40         base_fifo/construct
41         base_fifo/io
42         base_match/tolong
43         base_netstring/netstring
44         base_object/construct
45         base_object/getself
46         base_object/weak
47         base_shellescape/escape_basic
48         base_shellescape/escape_quoted
49         base_stacktrace/stacktrace
50         base_string/construct
51         base_string/equal
52         base_string/clear
53         base_string/append
54         base_string/trim
55         base_string/replace
56         base_string/index
57         base_string/find
58         base_timer/construct
59         base_timer/interval
60         base_timer/invoke
61         base_timer/scope
62         base_value/scalar
63         base_value/convert
64         base_value/format
65 )
66