[PATCH 1/2] tests:common: Increse buffer size to allow input for PQC testing.

NIIBE Yutaka via Gcrypt-devel <[email protected]> Thu, 26 Jun 2025 14:10:40 +0900
Newsgroups gmane.comp.encryption.gpg.libgcrypt.devel
Message-ID <b945002e44ce79227599e723fc1faa961494062b.1750914546.git.gniibe@fsij.org>
* tests/t-common.h (read_textline): Increase the buffer size.

--

GnuPG-bug-id: 7640
Signed-off-by: NIIBE Yutaka <[email protected]>
---
 tests/t-common.h | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

_______________________________________________
Gcrypt-devel mailing list
[email protected]
https://lists.gnupg.org/mailman/listinfo/gcrypt-devel
0001-tests-common-Increse-buffer-size-to-allow-input-for-.patch (text/x-patch, 300 B)
diff --git a/tests/t-common.h b/tests/t-common.h
index dd6a2203..eb3f03c0 100644
--- a/tests/t-common.h
+++ b/tests/t-common.h
@@ -260,7 +260,7 @@ prepend_srcdir (const char *fname)
 static char *
 read_textline (FILE *fp, int *lineno)
 {
-  char line[8192];
+  char line[16384];
   char *p;
 
   do