2
0
mirror of https://gitlab.isc.org/isc-projects/kea synced 2025-08-22 09:57:41 +00:00

[master] valgrind script, AUTHORS, ChangeLog updated

This commit is contained in:
Tomek Mrugalski 2017-04-04 18:02:04 +02:00
parent 272e7babf9
commit 8c1630fc05
3 changed files with 13 additions and 5 deletions

View File

@ -136,6 +136,9 @@ We have received the following contributions:
- Marvin Frick (MrMarvin)
2017-04: -h and --host parameters added to kea-admin
- Olivier Clavel (zeitounator)
2017-04: Improvements in valgrind test script
Kea uses log4cplus (http://sourceforge.net/projects/log4cplus/) for logging,
Boost (http://www.boost.org/) library for almost everything, and can use Botan
(http://botan.randombit.net/) or OpenSSL (https://www.openssl.org/) for

View File

@ -1,3 +1,7 @@
1236. [build] zeitounator
Improvements in tools/tests_in_valgrind.sh script.
(Github #49, git 272e7babf9ebeab5f78850394d72c9431041e2e9)
1235. [func] MrMarvin
kea-admin now supports -h (and --host) parameter that can specify
MySQL or PostgreSQL database locations other than the default

View File

@ -1,12 +1,13 @@
#!/bin/sh
###########################################
# This script runs all tests in valgrind. Configure and compile bind the way
# you want it to be tested (you should use --with-gtest, however, or you get
# no tests). Then run this script from the top build directory.
# This script runs all tests in valgrind. Configure and compile kea the way
# you want it to be tested (you should use --with-gtest or --with-gtest-source,
# however, or you get no tests). Then run this script from the top build
# directory.
#
# Note that the test isn't what you would call "production quality" (it is
# expected to be used by the bind10 developers, not end user) and might break,
# expected to be used by the kea developers, not end user) and might break,
# some ways of breaking it are known.
#
# There are two variables that modify it's behaviour.
@ -21,7 +22,7 @@
make
if [ $? = 2 ] ; then
echo "Did you run configure? Or maybe you're running the script from the tools directory? (you need to run it from the top bind10 build directory)"
echo "Did you run configure? Or maybe you're running the script from the tools directory? (you need to run it from the top kea build directory)"
exit 1
fi