3139.[test]added tests from RFC6234, RFC2202, and RFC1321 for the

This commit is contained in:
Curtis Blackburn
2011-07-28 21:05:09 +00:00
parent 17f6dae22f
commit 8787b357e6
2 changed files with 11 additions and 3 deletions

View File

@@ -1,3 +1,7 @@
3139. [test] added tests from RFC6234, RFC2202, and RFC1321 for the
hashing algorithms(md5, sha1 - 512, and their hmac
counterparts. [RT #25067]
3138. [bug] Address memory leaks and out-of-order operations when
shutting named down. [RT #25210]

View File

@@ -12,7 +12,7 @@
# OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
# PERFORMANCE OF THIS SOFTWARE.
# $Id: Makefile.in,v 1.3 2011/07/28 04:04:37 each Exp $
# $Id: Makefile.in,v 1.4 2011/07/28 21:05:09 ckb Exp $
srcdir = @srcdir@
VPATH = @srcdir@
@@ -35,10 +35,10 @@ ISCDEPLIBS = ../libisc.@A@
LIBS = @LIBS@ @ATFLIBS@
OBJS = isctest.@O@
SRCS = isctest.c taskpool_test.c socket_test.c
SRCS = isctest.c taskpool_test.c socket_test.c hash_test.c
SUBDIRS =
TARGETS = taskpool_test@EXEEXT@ socket_test@EXEEXT@
TARGETS = taskpool_test@EXEEXT@ socket_test@EXEEXT@ hash_test@EXEEXT@
@BIND9_MAKE_RULES@
@@ -50,5 +50,9 @@ socket_test@EXEEXT@: socket_test.@O@ isctest.@O@ ${ISCDEPLIBS}
${LIBTOOL_MODE_LINK} ${PURIFY} ${CC} ${CFLAGS} ${LDFLAGS} -o $@ \
socket_test.@O@ isctest.@O@ ${ISCLIBS} ${LIBS}
hash_test@EXEEXT@: hash_test.@O@ ${ISCDEPLIBS}
${LIBTOOL_MODE_LINK} ${PURIFY} ${CC} ${CFLAGS} ${LDFLAGS} -o $@ \
hash_test.@O@ ${ISCLIBS} ${LIBS}
clean distclean::
rm -f ${TARGETS}