gnunet-svn
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[gnurl] 249/282: unit1612: fixed the inclusion and compilation of the HM


From: gnunet
Subject: [gnurl] 249/282: unit1612: fixed the inclusion and compilation of the HMAC unit test
Date: Wed, 01 Apr 2020 14:31:54 +0200

This is an automated email from the git hooks/post-receive script.

ng0 pushed a commit to branch master
in repository gnurl.

commit 3c3db98b6fce8d1c6481e300ed4918ccddbd7891
Author: Steve Holme <address@hidden>
AuthorDate: Tue Mar 3 02:32:42 2020 +0000

    unit1612: fixed the inclusion and compilation of the HMAC unit test
    
    Follow up to 3f74e5e6 to fix:
    
    - A typo in Makefile.inc where unit1611 was used instead
    - Some compilation issues in unit1612.c
    
    Closes #5024
---
 tests/unit/Makefile.inc | 2 +-
 tests/unit/unit1612.c   | 3 ++-
 2 files changed, 3 insertions(+), 2 deletions(-)

diff --git a/tests/unit/Makefile.inc b/tests/unit/Makefile.inc
index 4fe80d5db..f63724f91 100644
--- a/tests/unit/Makefile.inc
+++ b/tests/unit/Makefile.inc
@@ -126,7 +126,7 @@ unit1610_CPPFLAGS = $(AM_CPPFLAGS)
 unit1611_SOURCES = unit1611.c $(UNITFILES)
 unit1611_CPPFLAGS = $(AM_CPPFLAGS)
 
-unit1612_SOURCES = unit1611.c $(UNITFILES)
+unit1612_SOURCES = unit1612.c $(UNITFILES)
 unit1612_CPPFLAGS = $(AM_CPPFLAGS)
 
 unit1620_SOURCES = unit1620.c $(UNITFILES)
diff --git a/tests/unit/unit1612.c b/tests/unit/unit1612.c
index be45397fb..3fb2de033 100644
--- a/tests/unit/unit1612.c
+++ b/tests/unit/unit1612.c
@@ -22,6 +22,7 @@
 #include "curlcheck.h"
 
 #include "curl_hmac.h"
+#include "curl_md5.h"
 
 static CURLcode unit_setup(void)
 {
@@ -44,7 +45,7 @@ UNITTEST_START
 
   Curl_hmacit(Curl_HMAC_MD5,
               (const unsigned char *) password, strlen(password),
-              (const unsigned char *) string1, strlen(string1)
+              (const unsigned char *) string1, strlen(string1),
               output);
 
   verify_memory(testp,

-- 
To stop receiving notification emails like this one, please contact
address@hidden.



reply via email to

[Prev in Thread] Current Thread [Next in Thread]