]> git.ipfire.org Git - thirdparty/kea.git/commitdiff
[master] valgrind script, AUTHORS, ChangeLog updated
authorTomek Mrugalski <tomasz@isc.org>
Tue, 4 Apr 2017 16:02:04 +0000 (18:02 +0200)
committerTomek Mrugalski <tomasz@isc.org>
Tue, 4 Apr 2017 16:02:04 +0000 (18:02 +0200)
AUTHORS
ChangeLog
tools/tests_in_valgrind.sh

diff --git a/AUTHORS b/AUTHORS
index 4d0606904beb495cb8824ac90e6f96e2524d8bd6..0413c39e00659634d2a70ae61fff15f1f10e7f09 100644 (file)
--- a/AUTHORS
+++ b/AUTHORS
@@ -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
index 1db007dcb98c54bd5fac9276f9596ffebae3863c..6eb4b9f36b55907983b60507583e1f1531881fbe 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -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
index f759b43573a07b5c0117c6aa7b642598fef61539..115fb8cf06815940ceeb0e7789f253b447910360 100755 (executable)
@@ -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