summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRazvan Becheriu <razvan@isc.org>2022-06-20 17:31:45 +0200
committerFrancis Dupont <fdupont@isc.org>2022-08-10 16:02:22 +0200
commit7f490a85594aa1fe9035f7c413f36cfc486480de (patch)
tree7e3455de56b2cf899f7c86eda0f5374133b3c101
parent[#2071] fixed paths for distcheck to work (diff)
downloadkea-7f490a85594aa1fe9035f7c413f36cfc486480de.tar.xz
kea-7f490a85594aa1fe9035f7c413f36cfc486480de.zip
[#2071] fixed use of valgrind
-rw-r--r--src/bin/agent/tests/Makefile.am3
-rw-r--r--src/bin/d2/tests/Makefile.am3
-rw-r--r--src/bin/dhcp4/tests/Makefile.am3
-rw-r--r--src/bin/dhcp6/tests/Makefile.am3
-rw-r--r--src/bin/lfc/tests/Makefile.am3
-rw-r--r--src/bin/netconf/tests/Makefile.am3
-rw-r--r--src/bin/perfdhcp/tests/Makefile.am3
-rw-r--r--src/hooks/dhcp/bootp/tests/Makefile.am3
-rw-r--r--src/hooks/dhcp/flex_option/libloadtests/Makefile.am3
-rw-r--r--src/hooks/dhcp/flex_option/tests/Makefile.am3
-rw-r--r--src/hooks/dhcp/high_availability/libloadtests/Makefile.am3
-rw-r--r--src/hooks/dhcp/high_availability/tests/Makefile.am3
-rw-r--r--src/hooks/dhcp/lease_cmds/tests/Makefile.am3
-rw-r--r--src/hooks/dhcp/mysql_cb/tests/Makefile.am3
-rw-r--r--src/hooks/dhcp/pgsql_cb/tests/Makefile.am3
-rw-r--r--src/hooks/dhcp/run_script/libloadtests/Makefile.am3
-rw-r--r--src/hooks/dhcp/run_script/tests/Makefile.am3
-rw-r--r--src/hooks/dhcp/stat_cmds/tests/Makefile.am3
-rw-r--r--src/hooks/dhcp/user_chk/tests/Makefile.am3
-rw-r--r--src/lib/asiodns/tests/Makefile.am3
-rw-r--r--src/lib/asiolink/tests/Makefile.am3
-rw-r--r--src/lib/cc/tests/Makefile.am3
-rw-r--r--src/lib/cfgrpt/tests/Makefile.am3
-rw-r--r--src/lib/config/tests/Makefile.am3
-rw-r--r--src/lib/config_backend/tests/Makefile.am3
-rw-r--r--src/lib/cryptolink/tests/Makefile.am3
-rw-r--r--src/lib/d2srv/tests/Makefile.am3
-rw-r--r--src/lib/database/tests/Makefile.am3
-rw-r--r--src/lib/dhcp/tests/Makefile.am3
-rw-r--r--src/lib/dhcp_ddns/tests/Makefile.am3
-rw-r--r--src/lib/dhcpsrv/tests/Makefile.am3
-rw-r--r--src/lib/dns/tests/Makefile.am3
-rw-r--r--src/lib/eval/tests/Makefile.am3
-rw-r--r--src/lib/exceptions/tests/Makefile.am3
-rw-r--r--src/lib/hooks/tests/Makefile.am3
-rw-r--r--src/lib/http/tests/Makefile.am3
-rw-r--r--src/lib/log/interprocess/tests/Makefile.am3
-rw-r--r--src/lib/log/tests/Makefile.am3
-rw-r--r--src/lib/mysql/tests/Makefile.am3
-rw-r--r--src/lib/pgsql/tests/Makefile.am3
-rw-r--r--src/lib/process/tests/Makefile.am3
-rw-r--r--src/lib/util/tests/Makefile.am3
-rw-r--r--src/lib/yang/tests/Makefile.am3
43 files changed, 51 insertions, 78 deletions
diff --git a/src/bin/agent/tests/Makefile.am b/src/bin/agent/tests/Makefile.am
index 40ac32765c..9c279d71c8 100644
--- a/src/bin/agent/tests/Makefile.am
+++ b/src/bin/agent/tests/Makefile.am
@@ -6,8 +6,7 @@ EXTRA_DIST += testdata/hiddenp
EXTRA_DIST += testdata/hiddens
EXTRA_DIST += testdata/hiddenu
-TESTS_ENVIRONMENT = \
- $(LIBTOOL) --mode=execute $(VALGRIND_COMMAND)
+TESTS_ENVIRONMENT = $(LIBTOOL) --mode=execute $(VALGRIND_COMMAND)
# Shell tests
SHTESTS = ca_process_tests.sh
diff --git a/src/bin/d2/tests/Makefile.am b/src/bin/d2/tests/Makefile.am
index b47513278e..09ef42efed 100644
--- a/src/bin/d2/tests/Makefile.am
+++ b/src/bin/d2/tests/Makefile.am
@@ -5,8 +5,7 @@ EXTRA_DIST =
EXTRA_DIST += testdata/d2_cfg_tests.json
EXTRA_DIST += testdata/get_config.json
-TESTS_ENVIRONMENT = \
- $(LIBTOOL) --mode=execute $(VALGRIND_COMMAND)
+TESTS_ENVIRONMENT = $(LIBTOOL) --mode=execute $(VALGRIND_COMMAND)
# Shell tests
SHTESTS = d2_process_tests.sh
diff --git a/src/bin/dhcp4/tests/Makefile.am b/src/bin/dhcp4/tests/Makefile.am
index 291d29f284..9b662d7c40 100644
--- a/src/bin/dhcp4/tests/Makefile.am
+++ b/src/bin/dhcp4/tests/Makefile.am
@@ -3,8 +3,7 @@ SUBDIRS = .
# Add to the tarball:
EXTRA_DIST = get_config_unittest.cc.skel
-TESTS_ENVIRONMENT = \
- $(LIBTOOL) --mode=execute $(VALGRIND_COMMAND)
+TESTS_ENVIRONMENT = $(LIBTOOL) --mode=execute $(VALGRIND_COMMAND)
# Shell tests
SHTESTS = dhcp4_process_tests.sh
diff --git a/src/bin/dhcp6/tests/Makefile.am b/src/bin/dhcp6/tests/Makefile.am
index 78c7166312..3970fd9eaf 100644
--- a/src/bin/dhcp6/tests/Makefile.am
+++ b/src/bin/dhcp6/tests/Makefile.am
@@ -3,8 +3,7 @@ SUBDIRS = .
# Add to the tarball:
EXTRA_DIST = get_config_unittest.cc.skel
-TESTS_ENVIRONMENT = \
- $(LIBTOOL) --mode=execute $(VALGRIND_COMMAND)
+TESTS_ENVIRONMENT = $(LIBTOOL) --mode=execute $(VALGRIND_COMMAND)
# Shell tests
SHTESTS = dhcp6_process_tests.sh
diff --git a/src/bin/lfc/tests/Makefile.am b/src/bin/lfc/tests/Makefile.am
index edba11847d..e2d31f65cb 100644
--- a/src/bin/lfc/tests/Makefile.am
+++ b/src/bin/lfc/tests/Makefile.am
@@ -14,8 +14,7 @@ if USE_STATIC_LINK
AM_LDFLAGS = -static
endif
-TESTS_ENVIRONMENT = \
- $(LIBTOOL) --mode=execute $(VALGRIND_COMMAND)
+TESTS_ENVIRONMENT = $(LIBTOOL) --mode=execute $(VALGRIND_COMMAND)
TESTS =
if HAVE_GTEST
diff --git a/src/bin/netconf/tests/Makefile.am b/src/bin/netconf/tests/Makefile.am
index 594472579f..e736f848a4 100644
--- a/src/bin/netconf/tests/Makefile.am
+++ b/src/bin/netconf/tests/Makefile.am
@@ -23,8 +23,7 @@ if USE_STATIC_LINK
AM_LDFLAGS = -static
endif
-TESTS_ENVIRONMENT = \
- $(LIBTOOL) --mode=execute $(VALGRIND_COMMAND)
+TESTS_ENVIRONMENT = $(LIBTOOL) --mode=execute $(VALGRIND_COMMAND)
TESTS =
if HAVE_GTEST
diff --git a/src/bin/perfdhcp/tests/Makefile.am b/src/bin/perfdhcp/tests/Makefile.am
index c62bd70b1f..5c47ef68e3 100644
--- a/src/bin/perfdhcp/tests/Makefile.am
+++ b/src/bin/perfdhcp/tests/Makefile.am
@@ -16,8 +16,7 @@ CLEANFILES = *.gcno *.gcda
# unit tests and have to be removed.
CLEANFILES += test1.hex test2.hex test3.hex test4.hex test5.hex
-TESTS_ENVIRONMENT = \
- $(LIBTOOL) --mode=execute $(VALGRIND_COMMAND)
+TESTS_ENVIRONMENT = $(LIBTOOL) --mode=execute $(VALGRIND_COMMAND)
TESTS =
if HAVE_GTEST
diff --git a/src/hooks/dhcp/bootp/tests/Makefile.am b/src/hooks/dhcp/bootp/tests/Makefile.am
index 692a647ae2..311c6fa5d6 100644
--- a/src/hooks/dhcp/bootp/tests/Makefile.am
+++ b/src/hooks/dhcp/bootp/tests/Makefile.am
@@ -17,7 +17,8 @@ EXTRA_DIST =
CLEANFILES = *.gcno *.gcda
-# TESTS_ENVIRONMENT = $(LIBTOOL) --mode=execute $(VALGRIND_COMMAND)
+TESTS_ENVIRONMENT = $(LIBTOOL) --mode=execute $(VALGRIND_COMMAND)
+
LOG_COMPILER = $(LIBTOOL)
AM_LOG_FLAGS = --mode=execute
diff --git a/src/hooks/dhcp/flex_option/libloadtests/Makefile.am b/src/hooks/dhcp/flex_option/libloadtests/Makefile.am
index 9730bee9af..8b23b0b0c6 100644
--- a/src/hooks/dhcp/flex_option/libloadtests/Makefile.am
+++ b/src/hooks/dhcp/flex_option/libloadtests/Makefile.am
@@ -17,7 +17,8 @@ EXTRA_DIST =
CLEANFILES = *.gcno *.gcda
-# TESTS_ENVIRONMENT = $(LIBTOOL) --mode=execute $(VALGRIND_COMMAND)
+TESTS_ENVIRONMENT = $(LIBTOOL) --mode=execute $(VALGRIND_COMMAND)
+
LOG_COMPILER = $(LIBTOOL)
AM_LOG_FLAGS = --mode=execute
diff --git a/src/hooks/dhcp/flex_option/tests/Makefile.am b/src/hooks/dhcp/flex_option/tests/Makefile.am
index 8051e8de7f..508912598d 100644
--- a/src/hooks/dhcp/flex_option/tests/Makefile.am
+++ b/src/hooks/dhcp/flex_option/tests/Makefile.am
@@ -17,7 +17,8 @@ EXTRA_DIST =
CLEANFILES = *.gcno *.gcda
-# TESTS_ENVIRONMENT = $(LIBTOOL) --mode=execute $(VALGRIND_COMMAND)
+TESTS_ENVIRONMENT = $(LIBTOOL) --mode=execute $(VALGRIND_COMMAND)
+
LOG_COMPILER = $(LIBTOOL)
AM_LOG_FLAGS = --mode=execute
diff --git a/src/hooks/dhcp/high_availability/libloadtests/Makefile.am b/src/hooks/dhcp/high_availability/libloadtests/Makefile.am
index 7387d710e5..a80c7fab3f 100644
--- a/src/hooks/dhcp/high_availability/libloadtests/Makefile.am
+++ b/src/hooks/dhcp/high_availability/libloadtests/Makefile.am
@@ -17,7 +17,8 @@ EXTRA_DIST =
CLEANFILES = *.gcno *.gcda
-# TESTS_ENVIRONMENT = $(LIBTOOL) --mode=execute $(VALGRIND_COMMAND)
+TESTS_ENVIRONMENT = $(LIBTOOL) --mode=execute $(VALGRIND_COMMAND)
+
LOG_COMPILER = $(LIBTOOL)
AM_LOG_FLAGS = --mode=execute
diff --git a/src/hooks/dhcp/high_availability/tests/Makefile.am b/src/hooks/dhcp/high_availability/tests/Makefile.am
index ab3f8e38e8..838a6946c2 100644
--- a/src/hooks/dhcp/high_availability/tests/Makefile.am
+++ b/src/hooks/dhcp/high_availability/tests/Makefile.am
@@ -21,8 +21,7 @@ EXTRA_DIST =
CLEANFILES = *.gcno *.gcda
-TESTS_ENVIRONMENT = \
- $(LIBTOOL) --mode=execute $(VALGRIND_COMMAND)
+TESTS_ENVIRONMENT = $(LIBTOOL) --mode=execute $(VALGRIND_COMMAND)
TESTS =
if HAVE_GTEST
diff --git a/src/hooks/dhcp/lease_cmds/tests/Makefile.am b/src/hooks/dhcp/lease_cmds/tests/Makefile.am
index 8b2efcc27f..f8ab706e4e 100644
--- a/src/hooks/dhcp/lease_cmds/tests/Makefile.am
+++ b/src/hooks/dhcp/lease_cmds/tests/Makefile.am
@@ -17,7 +17,8 @@ EXTRA_DIST =
CLEANFILES = *.gcno *.gcda
-# TESTS_ENVIRONMENT = $(LIBTOOL) --mode=execute $(VALGRIND_COMMAND)
+TESTS_ENVIRONMENT = $(LIBTOOL) --mode=execute $(VALGRIND_COMMAND)
+
LOG_COMPILER = $(LIBTOOL)
AM_LOG_FLAGS = --mode=execute
diff --git a/src/hooks/dhcp/mysql_cb/tests/Makefile.am b/src/hooks/dhcp/mysql_cb/tests/Makefile.am
index 49d519e815..e45f37feed 100644
--- a/src/hooks/dhcp/mysql_cb/tests/Makefile.am
+++ b/src/hooks/dhcp/mysql_cb/tests/Makefile.am
@@ -16,8 +16,7 @@ EXTRA_DIST =
CLEANFILES = *.gcno *.gcda
-TESTS_ENVIRONMENT = \
- $(LIBTOOL) --mode=execute $(VALGRIND_COMMAND)
+TESTS_ENVIRONMENT = $(LIBTOOL) --mode=execute $(VALGRIND_COMMAND)
TESTS =
if HAVE_GTEST
diff --git a/src/hooks/dhcp/pgsql_cb/tests/Makefile.am b/src/hooks/dhcp/pgsql_cb/tests/Makefile.am
index 146885d2b6..81341543c8 100644
--- a/src/hooks/dhcp/pgsql_cb/tests/Makefile.am
+++ b/src/hooks/dhcp/pgsql_cb/tests/Makefile.am
@@ -16,8 +16,7 @@ EXTRA_DIST =
CLEANFILES = *.gcno *.gcda
-TESTS_ENVIRONMENT = \
- $(LIBTOOL) --mode=execute $(VALGRIND_COMMAND)
+TESTS_ENVIRONMENT = $(LIBTOOL) --mode=execute $(VALGRIND_COMMAND)
TESTS =
if HAVE_GTEST
diff --git a/src/hooks/dhcp/run_script/libloadtests/Makefile.am b/src/hooks/dhcp/run_script/libloadtests/Makefile.am
index 439045af15..97fd7bb78f 100644
--- a/src/hooks/dhcp/run_script/libloadtests/Makefile.am
+++ b/src/hooks/dhcp/run_script/libloadtests/Makefile.am
@@ -18,7 +18,8 @@ EXTRA_DIST =
CLEANFILES = *.gcno *.gcda
-# TESTS_ENVIRONMENT = $(LIBTOOL) --mode=execute $(VALGRIND_COMMAND)
+TESTS_ENVIRONMENT = $(LIBTOOL) --mode=execute $(VALGRIND_COMMAND)
+
LOG_COMPILER = $(LIBTOOL)
AM_LOG_FLAGS = --mode=execute
diff --git a/src/hooks/dhcp/run_script/tests/Makefile.am b/src/hooks/dhcp/run_script/tests/Makefile.am
index acff08d54d..730e4a029c 100644
--- a/src/hooks/dhcp/run_script/tests/Makefile.am
+++ b/src/hooks/dhcp/run_script/tests/Makefile.am
@@ -25,7 +25,8 @@ CLEANFILES = *.gcno *.gcda
DISTCLEANFILES = run_script_test.sh
-# TESTS_ENVIRONMENT = $(LIBTOOL) --mode=execute $(VALGRIND_COMMAND)
+TESTS_ENVIRONMENT = $(LIBTOOL) --mode=execute $(VALGRIND_COMMAND)
+
LOG_COMPILER = $(LIBTOOL)
AM_LOG_FLAGS = --mode=execute
diff --git a/src/hooks/dhcp/stat_cmds/tests/Makefile.am b/src/hooks/dhcp/stat_cmds/tests/Makefile.am
index a0116ae4d8..5dfb8e0c0f 100644
--- a/src/hooks/dhcp/stat_cmds/tests/Makefile.am
+++ b/src/hooks/dhcp/stat_cmds/tests/Makefile.am
@@ -24,7 +24,8 @@ EXTRA_DIST =
CLEANFILES = *.gcno *.gcda
-# TESTS_ENVIRONMENT = $(LIBTOOL) --mode=execute $(VALGRIND_COMMAND)
+TESTS_ENVIRONMENT = $(LIBTOOL) --mode=execute $(VALGRIND_COMMAND)
+
LOG_COMPILER = $(LIBTOOL)
AM_LOG_FLAGS = --mode=execute
diff --git a/src/hooks/dhcp/user_chk/tests/Makefile.am b/src/hooks/dhcp/user_chk/tests/Makefile.am
index 36ad55c7d8..c37c28ee79 100644
--- a/src/hooks/dhcp/user_chk/tests/Makefile.am
+++ b/src/hooks/dhcp/user_chk/tests/Makefile.am
@@ -20,8 +20,7 @@ EXTRA_DIST = test_users_1.txt test_users_err.txt
CLEANFILES = *.gcno *.gcda
DISTCLEANFILES = test_data_files_config.h
-TESTS_ENVIRONMENT = \
- $(LIBTOOL) --mode=execute $(VALGRIND_COMMAND)
+TESTS_ENVIRONMENT = $(LIBTOOL) --mode=execute $(VALGRIND_COMMAND)
TESTS =
if HAVE_GTEST
diff --git a/src/lib/asiodns/tests/Makefile.am b/src/lib/asiodns/tests/Makefile.am
index 09ff27ef75..74517c10ea 100644
--- a/src/lib/asiodns/tests/Makefile.am
+++ b/src/lib/asiodns/tests/Makefile.am
@@ -9,8 +9,7 @@ endif
CLEANFILES = *.gcno *.gcda
-TESTS_ENVIRONMENT = \
- $(LIBTOOL) --mode=execute $(VALGRIND_COMMAND)
+TESTS_ENVIRONMENT = $(LIBTOOL) --mode=execute $(VALGRIND_COMMAND)
TESTS =
if HAVE_GTEST
diff --git a/src/lib/asiolink/tests/Makefile.am b/src/lib/asiolink/tests/Makefile.am
index a402e92267..b4be99784f 100644
--- a/src/lib/asiolink/tests/Makefile.am
+++ b/src/lib/asiolink/tests/Makefile.am
@@ -17,8 +17,7 @@ DISTCLEANFILES = process_spawn_app.sh
noinst_SCRIPTS = process_spawn_app.sh
-TESTS_ENVIRONMENT = \
- $(LIBTOOL) --mode=execute $(VALGRIND_COMMAND)
+TESTS_ENVIRONMENT = $(LIBTOOL) --mode=execute $(VALGRIND_COMMAND)
TESTS =
if HAVE_GTEST
diff --git a/src/lib/cc/tests/Makefile.am b/src/lib/cc/tests/Makefile.am
index 2abfb8c328..c1e0a6b0a1 100644
--- a/src/lib/cc/tests/Makefile.am
+++ b/src/lib/cc/tests/Makefile.am
@@ -8,8 +8,7 @@ endif
CLEANFILES = *.gcno *.gcda
-TESTS_ENVIRONMENT = \
- $(LIBTOOL) --mode=execute $(VALGRIND_COMMAND)
+TESTS_ENVIRONMENT = $(LIBTOOL) --mode=execute $(VALGRIND_COMMAND)
TESTS =
if HAVE_GTEST
diff --git a/src/lib/cfgrpt/tests/Makefile.am b/src/lib/cfgrpt/tests/Makefile.am
index 408dbadbe7..cda5ed9bf2 100644
--- a/src/lib/cfgrpt/tests/Makefile.am
+++ b/src/lib/cfgrpt/tests/Makefile.am
@@ -10,8 +10,7 @@ endif
CLEANFILES = *.gcno *.gcda
-TESTS_ENVIRONMENT = \
- $(LIBTOOL) --mode=execute $(VALGRIND_COMMAND)
+TESTS_ENVIRONMENT = $(LIBTOOL) --mode=execute $(VALGRIND_COMMAND)
TESTS =
if HAVE_GTEST
diff --git a/src/lib/config/tests/Makefile.am b/src/lib/config/tests/Makefile.am
index b58dada343..8b4fdd82cc 100644
--- a/src/lib/config/tests/Makefile.am
+++ b/src/lib/config/tests/Makefile.am
@@ -14,8 +14,7 @@ endif
CLEANFILES = *.gcno *.gcda
DISTCLEANFILES = data_def_unittests_config.h
-TESTS_ENVIRONMENT = \
- $(LIBTOOL) --mode=execute $(VALGRIND_COMMAND)
+TESTS_ENVIRONMENT = $(LIBTOOL) --mode=execute $(VALGRIND_COMMAND)
TESTS =
if HAVE_GTEST
diff --git a/src/lib/config_backend/tests/Makefile.am b/src/lib/config_backend/tests/Makefile.am
index 9e254b5959..a58d143942 100644
--- a/src/lib/config_backend/tests/Makefile.am
+++ b/src/lib/config_backend/tests/Makefile.am
@@ -12,8 +12,7 @@ endif
CLEANFILES = *.gcno *.gcda
-TESTS_ENVIRONMENT = \
- $(LIBTOOL) --mode=execute $(VALGRIND_COMMAND)
+TESTS_ENVIRONMENT = $(LIBTOOL) --mode=execute $(VALGRIND_COMMAND)
TESTS =
if HAVE_GTEST
diff --git a/src/lib/cryptolink/tests/Makefile.am b/src/lib/cryptolink/tests/Makefile.am
index a18618e5ae..a8bbb47123 100644
--- a/src/lib/cryptolink/tests/Makefile.am
+++ b/src/lib/cryptolink/tests/Makefile.am
@@ -10,8 +10,7 @@ endif
CLEANFILES = *.gcno *.gcda
-TESTS_ENVIRONMENT = \
- $(LIBTOOL) --mode=execute $(VALGRIND_COMMAND)
+TESTS_ENVIRONMENT = $(LIBTOOL) --mode=execute $(VALGRIND_COMMAND)
TESTS =
if HAVE_GTEST
diff --git a/src/lib/d2srv/tests/Makefile.am b/src/lib/d2srv/tests/Makefile.am
index 436cb21ee1..b1fffe820d 100644
--- a/src/lib/d2srv/tests/Makefile.am
+++ b/src/lib/d2srv/tests/Makefile.am
@@ -11,8 +11,7 @@ endif
CLEANFILES = *.gcno *.gcda
-TESTS_ENVIRONMENT = \
- $(LIBTOOL) --mode=execute $(VALGRIND_COMMAND)
+TESTS_ENVIRONMENT = $(LIBTOOL) --mode=execute $(VALGRIND_COMMAND)
TESTS =
if HAVE_GTEST
diff --git a/src/lib/database/tests/Makefile.am b/src/lib/database/tests/Makefile.am
index dd39beef93..f4cf4f0d3e 100644
--- a/src/lib/database/tests/Makefile.am
+++ b/src/lib/database/tests/Makefile.am
@@ -12,8 +12,7 @@ endif
CLEANFILES = *.gcno *.gcda
-TESTS_ENVIRONMENT = \
- $(LIBTOOL) --mode=execute $(VALGRIND_COMMAND)
+TESTS_ENVIRONMENT = $(LIBTOOL) --mode=execute $(VALGRIND_COMMAND)
TESTS =
if HAVE_GTEST
diff --git a/src/lib/dhcp/tests/Makefile.am b/src/lib/dhcp/tests/Makefile.am
index 33d74f2529..a140fc0a12 100644
--- a/src/lib/dhcp/tests/Makefile.am
+++ b/src/lib/dhcp/tests/Makefile.am
@@ -13,8 +13,7 @@ endif
CLEANFILES = *.gcno *.gcda
-TESTS_ENVIRONMENT = \
- $(LIBTOOL) --mode=execute $(VALGRIND_COMMAND)
+TESTS_ENVIRONMENT = $(LIBTOOL) --mode=execute $(VALGRIND_COMMAND)
TESTS =
if HAVE_GTEST
diff --git a/src/lib/dhcp_ddns/tests/Makefile.am b/src/lib/dhcp_ddns/tests/Makefile.am
index e1f27d1fa2..c504ca9770 100644
--- a/src/lib/dhcp_ddns/tests/Makefile.am
+++ b/src/lib/dhcp_ddns/tests/Makefile.am
@@ -13,8 +13,7 @@ endif
CLEANFILES = *.gcno *.gcda
-TESTS_ENVIRONMENT = \
- $(LIBTOOL) --mode=execute $(VALGRIND_COMMAND)
+TESTS_ENVIRONMENT = $(LIBTOOL) --mode=execute $(VALGRIND_COMMAND)
TESTS =
if HAVE_GTEST
diff --git a/src/lib/dhcpsrv/tests/Makefile.am b/src/lib/dhcpsrv/tests/Makefile.am
index 8252ebad23..495fef6f73 100644
--- a/src/lib/dhcpsrv/tests/Makefile.am
+++ b/src/lib/dhcpsrv/tests/Makefile.am
@@ -16,8 +16,7 @@ endif
CLEANFILES = *.gcno *.gcda
DISTCLEANFILES = test_libraries.h
-TESTS_ENVIRONMENT = \
- $(LIBTOOL) --mode=execute $(VALGRIND_COMMAND)
+TESTS_ENVIRONMENT = $(LIBTOOL) --mode=execute $(VALGRIND_COMMAND)
TESTS =
if HAVE_GTEST
diff --git a/src/lib/dns/tests/Makefile.am b/src/lib/dns/tests/Makefile.am
index 9b2e0fadc3..bf0ab4195d 100644
--- a/src/lib/dns/tests/Makefile.am
+++ b/src/lib/dns/tests/Makefile.am
@@ -12,8 +12,7 @@ endif
CLEANFILES = *.gcno *.gcda
-TESTS_ENVIRONMENT = \
- $(LIBTOOL) --mode=execute $(VALGRIND_COMMAND)
+TESTS_ENVIRONMENT = $(LIBTOOL) --mode=execute $(VALGRIND_COMMAND)
TESTS =
if HAVE_GTEST
diff --git a/src/lib/eval/tests/Makefile.am b/src/lib/eval/tests/Makefile.am
index f9d5a9e5a5..5a33f32e3f 100644
--- a/src/lib/eval/tests/Makefile.am
+++ b/src/lib/eval/tests/Makefile.am
@@ -12,8 +12,7 @@ endif
CLEANFILES = *.gcno *.gcda
-TESTS_ENVIRONMENT = \
- $(LIBTOOL) --mode=execute $(VALGRIND_COMMAND)
+TESTS_ENVIRONMENT = $(LIBTOOL) --mode=execute $(VALGRIND_COMMAND)
TESTS =
if HAVE_GTEST
diff --git a/src/lib/exceptions/tests/Makefile.am b/src/lib/exceptions/tests/Makefile.am
index 0e4d2293d5..5df69bd825 100644
--- a/src/lib/exceptions/tests/Makefile.am
+++ b/src/lib/exceptions/tests/Makefile.am
@@ -7,8 +7,7 @@ endif
CLEANFILES = *.gcno *.gcda
-TESTS_ENVIRONMENT = \
- $(LIBTOOL) --mode=execute $(VALGRIND_COMMAND)
+TESTS_ENVIRONMENT = $(LIBTOOL) --mode=execute $(VALGRIND_COMMAND)
TESTS =
if HAVE_GTEST
diff --git a/src/lib/hooks/tests/Makefile.am b/src/lib/hooks/tests/Makefile.am
index c9ea1a1ba1..dea7f4e41d 100644
--- a/src/lib/hooks/tests/Makefile.am
+++ b/src/lib/hooks/tests/Makefile.am
@@ -19,8 +19,7 @@ CLEANFILES = *.gcno *.gcda $(builddir)/marker_file.dat
# Files generated by configure
DISTCLEANFILES = marker_file.h test_libraries.h
-TESTS_ENVIRONMENT = \
- $(LIBTOOL) --mode=execute $(VALGRIND_COMMAND)
+TESTS_ENVIRONMENT = $(LIBTOOL) --mode=execute $(VALGRIND_COMMAND)
TESTS =
if HAVE_GTEST
diff --git a/src/lib/http/tests/Makefile.am b/src/lib/http/tests/Makefile.am
index c440fad5cd..51647db602 100644
--- a/src/lib/http/tests/Makefile.am
+++ b/src/lib/http/tests/Makefile.am
@@ -21,8 +21,7 @@ endif
CLEANFILES = *.gcno *.gcda
-TESTS_ENVIRONMENT = \
- $(LIBTOOL) --mode=execute $(VALGRIND_COMMAND)
+TESTS_ENVIRONMENT = $(LIBTOOL) --mode=execute $(VALGRIND_COMMAND)
TESTS =
if HAVE_GTEST
diff --git a/src/lib/log/interprocess/tests/Makefile.am b/src/lib/log/interprocess/tests/Makefile.am
index a1f8a73113..a51a4b34a6 100644
--- a/src/lib/log/interprocess/tests/Makefile.am
+++ b/src/lib/log/interprocess/tests/Makefile.am
@@ -14,8 +14,7 @@ endif
CLEANFILES = *.gcno *.gcda
-TESTS_ENVIRONMENT = \
- $(LIBTOOL) --mode=execute $(VALGRIND_COMMAND)
+TESTS_ENVIRONMENT = $(LIBTOOL) --mode=execute $(VALGRIND_COMMAND)
TESTS =
if HAVE_GTEST
diff --git a/src/lib/log/tests/Makefile.am b/src/lib/log/tests/Makefile.am
index 145d8093e5..668c3671d8 100644
--- a/src/lib/log/tests/Makefile.am
+++ b/src/lib/log/tests/Makefile.am
@@ -80,8 +80,7 @@ noinst_SCRIPTS = $(SHTESTS)
if HAVE_GTEST
-TESTS_ENVIRONMENT = \
- $(LIBTOOL) --mode=execute $(VALGRIND_COMMAND)
+TESTS_ENVIRONMENT = $(LIBTOOL) --mode=execute $(VALGRIND_COMMAND)
# Set of unit tests for the general logging classes
PROGRAM_TESTS = run_unittests
diff --git a/src/lib/mysql/tests/Makefile.am b/src/lib/mysql/tests/Makefile.am
index f11254e3c7..b0945f298f 100644
--- a/src/lib/mysql/tests/Makefile.am
+++ b/src/lib/mysql/tests/Makefile.am
@@ -11,8 +11,7 @@ endif
CLEANFILES = *.gcno *.gcda
-TESTS_ENVIRONMENT = \
- $(LIBTOOL) --mode=execute $(VALGRIND_COMMAND)
+TESTS_ENVIRONMENT = $(LIBTOOL) --mode=execute $(VALGRIND_COMMAND)
TESTS =
if HAVE_GTEST
diff --git a/src/lib/pgsql/tests/Makefile.am b/src/lib/pgsql/tests/Makefile.am
index ac24adbf24..1250a52d03 100644
--- a/src/lib/pgsql/tests/Makefile.am
+++ b/src/lib/pgsql/tests/Makefile.am
@@ -11,8 +11,7 @@ endif
CLEANFILES = *.gcno *.gcda
-TESTS_ENVIRONMENT = \
- $(LIBTOOL) --mode=execute $(VALGRIND_COMMAND)
+TESTS_ENVIRONMENT = $(LIBTOOL) --mode=execute $(VALGRIND_COMMAND)
TESTS =
if HAVE_GTEST
diff --git a/src/lib/process/tests/Makefile.am b/src/lib/process/tests/Makefile.am
index 4d016456e9..7c1a43059a 100644
--- a/src/lib/process/tests/Makefile.am
+++ b/src/lib/process/tests/Makefile.am
@@ -14,8 +14,7 @@ endif
CLEANFILES = *.gcno *.gcda
-TESTS_ENVIRONMENT = \
- $(LIBTOOL) --mode=execute $(VALGRIND_COMMAND)
+TESTS_ENVIRONMENT = $(LIBTOOL) --mode=execute $(VALGRIND_COMMAND)
TESTS =
if HAVE_GTEST
diff --git a/src/lib/util/tests/Makefile.am b/src/lib/util/tests/Makefile.am
index fd696504d6..8b6a612e75 100644
--- a/src/lib/util/tests/Makefile.am
+++ b/src/lib/util/tests/Makefile.am
@@ -17,8 +17,7 @@ CLEANFILES = *.gcno *.gcda
# CSV files are created by unit tests for CSVFile class.
CLEANFILES += *.csv
-TESTS_ENVIRONMENT = \
- $(LIBTOOL) --mode=execute $(VALGRIND_COMMAND)
+TESTS_ENVIRONMENT = $(LIBTOOL) --mode=execute $(VALGRIND_COMMAND)
TESTS =
if HAVE_GTEST
diff --git a/src/lib/yang/tests/Makefile.am b/src/lib/yang/tests/Makefile.am
index 9fe769326a..09c42d7ef5 100644
--- a/src/lib/yang/tests/Makefile.am
+++ b/src/lib/yang/tests/Makefile.am
@@ -11,8 +11,7 @@ endif
CLEANFILES = *.gcno *.gcda
-TESTS_ENVIRONMENT = \
- $(LIBTOOL) --mode=execute $(VALGRIND_COMMAND)
+TESTS_ENVIRONMENT = $(LIBTOOL) --mode=execute $(VALGRIND_COMMAND)
TESTS =
if HAVE_GTEST