[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
branch master updated: * tp/tests/many_input_files/different_encodings.s
From: |
Patrice Dumas |
Subject: |
branch master updated: * tp/tests/many_input_files/different_encodings.sh: skip test if $PERL_UNICODE_COLLATE_OK is no, as this test requires compatible unicode collation. Report from Gavin based on Nelson Beebe pretest test results. |
Date: |
Sun, 17 Sep 2023 09:54:21 -0400 |
This is an automated email from the git hooks/post-receive script.
pertusus pushed a commit to branch master
in repository texinfo.
The following commit(s) were added to refs/heads/master by this push:
new e34a8d6b66 * tp/tests/many_input_files/different_encodings.sh: skip
test if $PERL_UNICODE_COLLATE_OK is no, as this test requires compatible
unicode collation. Report from Gavin based on Nelson Beebe pretest test
results.
e34a8d6b66 is described below
commit e34a8d6b66d0518a2c1673da62c56b60f87151e3
Author: Patrice Dumas <pertusus@free.fr>
AuthorDate: Sun Sep 17 15:54:14 2023 +0200
* tp/tests/many_input_files/different_encodings.sh: skip test if
$PERL_UNICODE_COLLATE_OK is no, as this test requires compatible
unicode collation. Report from Gavin based on Nelson Beebe pretest
test results.
---
ChangeLog | 7 +++++++
tp/tests/many_input_files/different_encodings.sh | 5 +++++
2 files changed, 12 insertions(+)
diff --git a/ChangeLog b/ChangeLog
index 2b00f4d433..83310408dd 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,10 @@
+2023-09-17 Patrice Dumas <pertusus@free.fr>
+
+ * tp/tests/many_input_files/different_encodings.sh: skip test if
+ $PERL_UNICODE_COLLATE_OK is no, as this test requires compatible
+ unicode collation. Report from Gavin based on Nelson Beebe pretest
+ test results.
+
2023-09-13 Gavin Smith <gavinsmith0123@gmail.com>
pretest 7.0.92
diff --git a/tp/tests/many_input_files/different_encodings.sh
b/tp/tests/many_input_files/different_encodings.sh
index 654c0cdf3d..52e9fbd72b 100755
--- a/tp/tests/many_input_files/different_encodings.sh
+++ b/tp/tests/many_input_files/different_encodings.sh
@@ -25,6 +25,11 @@ prepended_command=
. ../../defs || exit 1
+if test "z$PERL_UNICODE_COLLATE_OK" = 'zno' ; then
+ echo "Skipping tests that require compatible unicode collation"
+ exit 77
+fi
+
[ -d $diffs_dir ] || mkdir $diffs_dir
staging_dir=$diffs_dir/staging
[ -d $staging_dir ] || mkdir $staging_dir
[Prev in Thread] |
Current Thread |
[Next in Thread] |
- branch master updated: * tp/tests/many_input_files/different_encodings.sh: skip test if $PERL_UNICODE_COLLATE_OK is no, as this test requires compatible unicode collation. Report from Gavin based on Nelson Beebe pretest test results.,
Patrice Dumas <=