[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
grep branch, master, updated. v3.8-25-gb63a992
From: |
Paul Eggert |
Subject: |
grep branch, master, updated. v3.8-25-gb63a992 |
Date: |
Sun, 15 Jan 2023 19:39:03 -0500 (EST) |
This is an automated email from the git hooks/post-receive script. It was
generated because a ref change was pushed to the repository containing
the project "grep".
The branch, master has been updated
via b63a9923464602ad73e205e3fb0e10dce8f4ac30 (commit)
via d59fbb41460d7e8e7a84e0047ac57666c9f7ac43 (commit)
via 4b60e9f353517e2034cc77f16b97580a5982b9c6 (commit)
via 72ccd15d5c73c687dc7eef81f3dbea2f33134cc4 (commit)
via eae77386eb4425ed096a168b909220ea8b27657a (commit)
from 6de66dd6be1e809f398477dfb2223341e38afce4 (commit)
Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.
- Log -----------------------------------------------------------------
http://git.savannah.gnu.org/cgit/grep.git/commit/?id=b63a9923464602ad73e205e3fb0e10dce8f4ac30
commit b63a9923464602ad73e205e3fb0e10dce8f4ac30
Author: Paul Eggert <eggert@cs.ucla.edu>
Date: Sun Jan 15 15:51:09 2023 -0800
tests: fix test -eq problem
Do not use âtest "" -eq 1â when get-mb-cur-max fails,
as Bash complains about this. Problem found on AIX.
diff --git a/tests/case-fold-titlecase b/tests/case-fold-titlecase
index 41e0831..61c7ea0 100755
--- a/tests/case-fold-titlecase
+++ b/tests/case-fold-titlecase
@@ -168,7 +168,7 @@ do
done
# Try a unibyte test with ISO 8859-7, if available.
-if test "$(get-mb-cur-max el_GR.iso88597)" -eq 1; then
+if test "$(get-mb-cur-max el_GR.iso88597)" = 1; then
LC_ALL=el_GR.iso88597
export LC_ALL
http://git.savannah.gnu.org/cgit/grep.git/commit/?id=d59fbb41460d7e8e7a84e0047ac57666c9f7ac43
commit b63a9923464602ad73e205e3fb0e10dce8f4ac30
Author: Paul Eggert <eggert@cs.ucla.edu>
Date: Sun Jan 15 15:51:09 2023 -0800
tests: fix test -eq problem
Do not use âtest "" -eq 1â when get-mb-cur-max fails,
as Bash complains about this. Problem found on AIX.
diff --git a/tests/case-fold-titlecase b/tests/case-fold-titlecase
index 41e0831..61c7ea0 100755
--- a/tests/case-fold-titlecase
+++ b/tests/case-fold-titlecase
@@ -168,7 +168,7 @@ do
done
# Try a unibyte test with ISO 8859-7, if available.
-if test "$(get-mb-cur-max el_GR.iso88597)" -eq 1; then
+if test "$(get-mb-cur-max el_GR.iso88597)" = 1; then
LC_ALL=el_GR.iso88597
export LC_ALL
http://git.savannah.gnu.org/cgit/grep.git/commit/?id=4b60e9f353517e2034cc77f16b97580a5982b9c6
commit b63a9923464602ad73e205e3fb0e10dce8f4ac30
Author: Paul Eggert <eggert@cs.ucla.edu>
Date: Sun Jan 15 15:51:09 2023 -0800
tests: fix test -eq problem
Do not use âtest "" -eq 1â when get-mb-cur-max fails,
as Bash complains about this. Problem found on AIX.
diff --git a/tests/case-fold-titlecase b/tests/case-fold-titlecase
index 41e0831..61c7ea0 100755
--- a/tests/case-fold-titlecase
+++ b/tests/case-fold-titlecase
@@ -168,7 +168,7 @@ do
done
# Try a unibyte test with ISO 8859-7, if available.
-if test "$(get-mb-cur-max el_GR.iso88597)" -eq 1; then
+if test "$(get-mb-cur-max el_GR.iso88597)" = 1; then
LC_ALL=el_GR.iso88597
export LC_ALL
http://git.savannah.gnu.org/cgit/grep.git/commit/?id=72ccd15d5c73c687dc7eef81f3dbea2f33134cc4
commit b63a9923464602ad73e205e3fb0e10dce8f4ac30
Author: Paul Eggert <eggert@cs.ucla.edu>
Date: Sun Jan 15 15:51:09 2023 -0800
tests: fix test -eq problem
Do not use âtest "" -eq 1â when get-mb-cur-max fails,
as Bash complains about this. Problem found on AIX.
diff --git a/tests/case-fold-titlecase b/tests/case-fold-titlecase
index 41e0831..61c7ea0 100755
--- a/tests/case-fold-titlecase
+++ b/tests/case-fold-titlecase
@@ -168,7 +168,7 @@ do
done
# Try a unibyte test with ISO 8859-7, if available.
-if test "$(get-mb-cur-max el_GR.iso88597)" -eq 1; then
+if test "$(get-mb-cur-max el_GR.iso88597)" = 1; then
LC_ALL=el_GR.iso88597
export LC_ALL
http://git.savannah.gnu.org/cgit/grep.git/commit/?id=eae77386eb4425ed096a168b909220ea8b27657a
commit b63a9923464602ad73e205e3fb0e10dce8f4ac30
Author: Paul Eggert <eggert@cs.ucla.edu>
Date: Sun Jan 15 15:51:09 2023 -0800
tests: fix test -eq problem
Do not use âtest "" -eq 1â when get-mb-cur-max fails,
as Bash complains about this. Problem found on AIX.
diff --git a/tests/case-fold-titlecase b/tests/case-fold-titlecase
index 41e0831..61c7ea0 100755
--- a/tests/case-fold-titlecase
+++ b/tests/case-fold-titlecase
@@ -168,7 +168,7 @@ do
done
# Try a unibyte test with ISO 8859-7, if available.
-if test "$(get-mb-cur-max el_GR.iso88597)" -eq 1; then
+if test "$(get-mb-cur-max el_GR.iso88597)" = 1; then
LC_ALL=el_GR.iso88597
export LC_ALL
-----------------------------------------------------------------------
Summary of changes:
gnulib | 2 +-
src/grep.c | 4 ++--
tests/case-fold-titlecase | 2 +-
tests/hangul-syllable | 9 +++++++++
tests/init.sh | 9 +++++----
tests/surrogate-search | 13 +++++++++----
6 files changed, 27 insertions(+), 12 deletions(-)
hooks/post-receive
--
grep
[Prev in Thread] |
Current Thread |
[Next in Thread] |
- grep branch, master, updated. v3.8-25-gb63a992,
Paul Eggert <=