Browse Source

[master] valgrind script, AUTHORS, ChangeLog updated

Tomek Mrugalski 8 years ago
parent
commit
8c1630fc05
3 changed files with 13 additions and 5 deletions
  1. 3 0
      AUTHORS
  2. 4 0
      ChangeLog
  3. 6 5
      tools/tests_in_valgrind.sh

+ 3 - 0
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

+ 4 - 0
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

+ 6 - 5
tools/tests_in_valgrind.sh

@@ -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