Based on (hunks for changelog and Identy.cpp removed) From ecbc07f0ed336187cc9a67c3363f89681b8b8f52 Mon Sep 17 00:00:00 2001 From: Michael Pruett Date: Tue, 5 Jul 2016 23:26:16 -0500 Subject: [PATCH] Fix type of test data arrays. --- ChangeLog | 6 ++++++ test/Identify.cpp | 3 ++- test/NeXT.cpp | 7 ++++--- 3 files changed, 12 insertions(+), 4 deletions(-) diff --git a/test/NeXT.cpp b/test/NeXT.cpp index 7e39850..29af877 100644 --- a/test/NeXT.cpp +++ b/test/NeXT.cpp @@ -30,6 +30,7 @@ #include #include #include +#include #include #include #include @@ -37,7 +38,7 @@ #include "TestUtilities.h" -const char kDataUnspecifiedLength[] = +const uint8_t kDataUnspecifiedLength[] = { '.', 's', 'n', 'd', 0, 0, 0, 24, // offset of 24 bytes @@ -57,7 +58,7 @@ const char kDataUnspecifiedLength[] = 0, 55 }; -const char kDataTruncated[] = +const uint8_t kDataTruncated[] = { '.', 's', 'n', 'd', 0, 0, 0, 24, // offset of 24 bytes @@ -152,7 +153,7 @@ TEST(NeXT, Truncated) ASSERT_EQ(::unlink(testFileName.c_str()), 0); } -const char kDataZeroChannels[] = +const uint8_t kDataZeroChannels[] = { '.', 's', 'n', 'd', 0, 0, 0, 24, // offset of 24 bytes treecommitdiff
AgeCommit message (Expand)Author
2021-06-23build: Makefile splits Scheme compilation in four steps....Fixes <https://bugs.gnu.org/48963>. Reported by Julien Lepiller <julien@lepiller.eu>. This reduces peak memory consumption to something less unreasonable. * Makefile.am (make-go): Depend on 'make-*-go' targets; remove body. (guile-compilation-rule): New function. (MODULES_CORE, MODULES_PACKAGES, MODULES_SYSTEM, MODULES_CLI): New variables. <top level>: Call 'guile-compilation-rule' 4 times. * build-aux/compile-all.scm <top level>: Expect "--total" and "--processed". Take them into account when displaying progress reports. Ludovic Courtès
2021-06-18build: Remove Guile 2.2 workaround....* build-aux/compile-all.scm <top level>: Remove Guile 2.2 workaround. Ludovic Courtès