summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBruno Haible <bruno@clisp.org>2018-09-08 17:12:15 +0200
committerBruno Haible <bruno@clisp.org>2018-09-08 17:12:15 +0200
commit11487a61ce8a90f29c078dffc576e42cad24b789 (patch)
tree37680fcd12663ae2988a7cc8b68afa6fd0335d80
parent5f4cf73df2bd7002cbff3869352c96b9b7cbfeda (diff)
downloadgperf-11487a61ce8a90f29c078dffc576e42cad24b789.tar.gz
Fix failure of "make check -j2".
-rw-r--r--ChangeLog7
-rw-r--r--tests/Makefile.in4
2 files changed, 9 insertions, 2 deletions
diff --git a/ChangeLog b/ChangeLog
index 41c2bad..023d3bc 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,5 +1,12 @@
2018-09-08 Bruno Haible <bruno@clisp.org>
+ Fix failure of "make check -j2".
+ Reported and fix provided by Bernhard M. Wiedemann in
+ <https://savannah.gnu.org/bugs/?53208>.
+ * tests/Makefile.in (check-test): Depend on 'check-ada'.
+
+2018-09-08 Bruno Haible <bruno@clisp.org>
+
Don't print uninitialized hash values in debug mode.
Reported by Frank Wojcik <frankw@touristinresidence.com> in
<https://savannah.gnu.org/patch/?9560>.
diff --git a/tests/Makefile.in b/tests/Makefile.in
index 374cbb2..2e756ce 100644
--- a/tests/Makefile.in
+++ b/tests/Makefile.in
@@ -1,6 +1,6 @@
# Makefile for gperf/tests
-# Copyright (C) 1989, 1992-1993, 1995, 1998, 2000, 2002-2004, 2007-2009, 2012, 2016 Free Software Foundation, Inc.
+# Copyright (C) 1989, 1992-1993, 1995, 1998, 2000, 2002-2004, 2007-2009, 2012, 2016, 2018 Free Software Foundation, Inc.
# Written by Douglas C. Schmidt <schmidt@ics.uci.edu>
# and Bruno Haible <bruno@clisp.org>.
#
@@ -138,7 +138,7 @@ check-smtp:
# these next 5 are demos that show off the generated code
POSTPROCESS_FOR_MINGW = LC_ALL=C tr -d '\r' | LC_ALL=C sed -e 's|[^ ]*[/\\][\\]*src[/\\][\\]*gperf[^ ]*|../src/gperf|'
-check-test:
+check-test: check-ada
$(GPERF) -L C -F ', 0, 0' -j1 -i 1 -g -o -t -G -N is_reserved_word -k1,3,'$$' < $(srcdir)/c-parse.gperf | $(POSTPROCESS_FOR_MINGW) > c-parse.out
diff $(srcdir)/c-parse.exp c-parse.out
$(GPERF) -j1 -i 1 -g -o -t -N is_reserved_word -k1,3,'$$' < $(srcdir)/objc.gperf | $(POSTPROCESS_FOR_MINGW) > objc.out