Skip to content

Commit 027674f

Browse files
author
Razvan Becheriu
committed
[#3316] fixed doxygen
1 parent e418cdf commit 027674f

File tree

170 files changed

+1095
-2441
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

170 files changed

+1095
-2441
lines changed

configure.ac

-2
Original file line numberDiff line numberDiff line change
@@ -1596,8 +1596,6 @@ AC_CONFIG_FILES([src/lib/cc/Makefile])
15961596
AC_CONFIG_FILES([src/lib/cc/tests/Makefile])
15971597
AC_CONFIG_FILES([src/lib/config/Makefile])
15981598
AC_CONFIG_FILES([src/lib/config/tests/Makefile])
1599-
AC_CONFIG_FILES([src/lib/config/tests/data_def_unittests_config.h])
1600-
AC_CONFIG_FILES([src/lib/config/tests/testdata/Makefile])
16011599
AC_CONFIG_FILES([src/lib/config_backend/Makefile])
16021600
AC_CONFIG_FILES([src/lib/config_backend/tests/Makefile])
16031601
AC_CONFIG_FILES([src/lib/cryptolink/Makefile])

src/bin/dhcp4/tests/dhcp4_unittests.cc

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
#include <config.h>
88

99
#include <log/logger_support.h>
10-
#include <dhcp4/dhcp4_log.h>
10+
1111
#include <gtest/gtest.h>
1212

1313
int

src/bin/dhcp6/tests/dhcp6_unittests.cc

+4-1
Original file line numberDiff line numberDiff line change
@@ -14,10 +14,13 @@ int
1414
main(int argc, char* argv[]) {
1515

1616
::testing::InitGoogleTest(&argc, argv);
17+
18+
// See the documentation of the KEA_* environment variables in
19+
// src/lib/log/README for info on how to tweak logging
1720
isc::log::initLogger();
1821

1922
setenv("KEA_PIDFILE_DIR", TEST_DATA_BUILDDIR, 1);
2023
int result = RUN_ALL_TESTS();
2124

22-
return result;
25+
return (result);
2326
}

src/hooks/dhcp/bootp/libloadtests/run_unittests.cc

+3-4
Original file line numberDiff line numberDiff line change
@@ -1,19 +1,18 @@
11
// Copyright (C) 2022 Internet Systems Consortium, Inc. ("ISC")
22
//
3-
// This Source Code Form is subject to the terms of the End User License
4-
// Agreement. See COPYING file in the premium/ directory.
3+
// This Source Code Form is subject to the terms of the Mozilla Public
4+
// License, v. 2.0. If a copy of the MPL was not distributed with this
5+
// file, You can obtain one at http://mozilla.org/MPL/2.0/.
56

67
#include <config.h>
78

89
#include <log/logger_support.h>
9-
1010
#include <gtest/gtest.h>
1111

1212
int
1313
main(int argc, char* argv[]) {
1414
::testing::InitGoogleTest(&argc, argv);
1515
isc::log::initLogger();
16-
1716
int result = RUN_ALL_TESTS();
1817

1918
return (result);

src/hooks/dhcp/lease_cmds/libloadtests/run_unittests.cc

+3-4
Original file line numberDiff line numberDiff line change
@@ -1,19 +1,18 @@
11
// Copyright (C) 2022 Internet Systems Consortium, Inc. ("ISC")
22
//
3-
// This Source Code Form is subject to the terms of the End User License
4-
// Agreement. See COPYING file in the premium/ directory.
3+
// This Source Code Form is subject to the terms of the Mozilla Public
4+
// License, v. 2.0. If a copy of the MPL was not distributed with this
5+
// file, You can obtain one at http://mozilla.org/MPL/2.0/.
56

67
#include <config.h>
78

89
#include <log/logger_support.h>
9-
1010
#include <gtest/gtest.h>
1111

1212
int
1313
main(int argc, char* argv[]) {
1414
::testing::InitGoogleTest(&argc, argv);
1515
isc::log::initLogger();
16-
1716
int result = RUN_ALL_TESTS();
1817

1918
return (result);

src/hooks/dhcp/mysql_cb/libloadtests/run_unittests.cc

+3-4
Original file line numberDiff line numberDiff line change
@@ -1,19 +1,18 @@
11
// Copyright (C) 2022 Internet Systems Consortium, Inc. ("ISC")
22
//
3-
// This Source Code Form is subject to the terms of the End User License
4-
// Agreement. See COPYING file in the premium/ directory.
3+
// This Source Code Form is subject to the terms of the Mozilla Public
4+
// License, v. 2.0. If a copy of the MPL was not distributed with this
5+
// file, You can obtain one at http://mozilla.org/MPL/2.0/.
56

67
#include <config.h>
78

89
#include <log/logger_support.h>
9-
1010
#include <gtest/gtest.h>
1111

1212
int
1313
main(int argc, char* argv[]) {
1414
::testing::InitGoogleTest(&argc, argv);
1515
isc::log::initLogger();
16-
1716
int result = RUN_ALL_TESTS();
1817

1918
return (result);

src/hooks/dhcp/mysql_cb/tests/run_unittests.cc

-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,6 @@
77
#include <config.h>
88

99
#include <log/logger_support.h>
10-
1110
#include <gtest/gtest.h>
1211

1312
int

src/hooks/dhcp/perfmon/libloadtests/run_unittests.cc

+3-4
Original file line numberDiff line numberDiff line change
@@ -1,19 +1,18 @@
11
// Copyright (C) 2024 Internet Systems Consortium, Inc. ("ISC")
22
//
3-
// This Source Code Form is subject to the terms of the End User License
4-
// Agreement. See COPYING file in the premium/ directory.
3+
// This Source Code Form is subject to the terms of the Mozilla Public
4+
// License, v. 2.0. If a copy of the MPL was not distributed with this
5+
// file, You can obtain one at http://mozilla.org/MPL/2.0/.
56

67
#include <config.h>
78

89
#include <log/logger_support.h>
9-
1010
#include <gtest/gtest.h>
1111

1212
int
1313
main(int argc, char* argv[]) {
1414
::testing::InitGoogleTest(&argc, argv);
1515
isc::log::initLogger();
16-
1716
int result = RUN_ALL_TESTS();
1817

1918
return (result);

src/hooks/dhcp/pgsql_cb/libloadtests/run_unittests.cc

+3-4
Original file line numberDiff line numberDiff line change
@@ -1,19 +1,18 @@
11
// Copyright (C) 2022 Internet Systems Consortium, Inc. ("ISC")
22
//
3-
// This Source Code Form is subject to the terms of the End User License
4-
// Agreement. See COPYING file in the premium/ directory.
3+
// This Source Code Form is subject to the terms of the Mozilla Public
4+
// License, v. 2.0. If a copy of the MPL was not distributed with this
5+
// file, You can obtain one at http://mozilla.org/MPL/2.0/.
56

67
#include <config.h>
78

89
#include <log/logger_support.h>
9-
1010
#include <gtest/gtest.h>
1111

1212
int
1313
main(int argc, char* argv[]) {
1414
::testing::InitGoogleTest(&argc, argv);
1515
isc::log::initLogger();
16-
1716
int result = RUN_ALL_TESTS();
1817

1918
return (result);

src/hooks/dhcp/pgsql_cb/tests/run_unittests.cc

-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,6 @@
77
#include <config.h>
88

99
#include <log/logger_support.h>
10-
1110
#include <gtest/gtest.h>
1211

1312
int

src/hooks/dhcp/stat_cmds/libloadtests/run_unittests.cc

+3-4
Original file line numberDiff line numberDiff line change
@@ -1,19 +1,18 @@
11
// Copyright (C) 2022 Internet Systems Consortium, Inc. ("ISC")
22
//
3-
// This Source Code Form is subject to the terms of the End User License
4-
// Agreement. See COPYING file in the premium/ directory.
3+
// This Source Code Form is subject to the terms of the Mozilla Public
4+
// License, v. 2.0. If a copy of the MPL was not distributed with this
5+
// file, You can obtain one at http://mozilla.org/MPL/2.0/.
56

67
#include <config.h>
78

89
#include <log/logger_support.h>
9-
1010
#include <gtest/gtest.h>
1111

1212
int
1313
main(int argc, char* argv[]) {
1414
::testing::InitGoogleTest(&argc, argv);
1515
isc::log::initLogger();
16-
1716
int result = RUN_ALL_TESTS();
1817

1918
return (result);

src/hooks/dhcp/user_chk/tests/run_unittests.cc

-2
Original file line numberDiff line numberDiff line change
@@ -7,14 +7,12 @@
77
#include <config.h>
88

99
#include <log/logger_support.h>
10-
1110
#include <gtest/gtest.h>
1211

1312
int
1413
main(int argc, char* argv[]) {
1514
::testing::InitGoogleTest(&argc, argv);
1615
isc::log::initLogger();
17-
1816
int result = RUN_ALL_TESTS();
1917

2018
return (result);

src/lib/asiodns/Makefile.am

+4-5
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,14 @@
11
SUBDIRS = . tests
22

3-
AM_CPPFLAGS = -I$(top_srcdir)/src/lib -I$(top_builddir)/src/lib
3+
AM_CPPFLAGS = -I$(top_srcdir)/src/lib -I$(top_builddir)/src/lib
44
AM_CPPFLAGS += $(BOOST_INCLUDES)
55

66
AM_CXXFLAGS = $(KEA_CXXFLAGS)
77

88
CLEANFILES = *.gcno *.gcda
99

10+
EXTRA_DIST = asiodns_messages.mes
11+
1012
lib_LTLIBRARIES = libkea-asiodns.la
1113

1214
libkea_asiodns_la_LDFLAGS = -no-undefined -version-info 47:0:0
@@ -15,10 +17,7 @@ libkea_asiodns_la_SOURCES = io_fetch.cc io_fetch.h
1517
libkea_asiodns_la_SOURCES += logger.h logger.cc
1618
libkea_asiodns_la_SOURCES += asiodns_messages.cc asiodns_messages.h
1719

18-
EXTRA_DIST = asiodns_messages.mes
19-
20-
# Note: the ordering matters: -Wno-... must follow -Wextra (defined in
21-
# KEA_CXXFLAGS)
20+
# Note: the ordering matters: -Wno-... must follow -Wextra (defined in KEA_CXXFLAGS)
2221
libkea_asiodns_la_CXXFLAGS = $(AM_CXXFLAGS)
2322
libkea_asiodns_la_CPPFLAGS = $(AM_CPPFLAGS)
2423
libkea_asiodns_la_LIBADD = $(top_builddir)/src/lib/asiolink/libkea-asiolink.la

src/lib/asiodns/README

-154
This file was deleted.

0 commit comments

Comments
 (0)