[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
branch master updated: * tp/t/same_parser_multiple_files.t: set locale t
From: |
Patrice Dumas |
Subject: |
branch master updated: * tp/t/same_parser_multiple_files.t: set locale to C and LANGUAGE to en for reproducible tests. |
Date: |
Thu, 28 Nov 2024 15:09:42 -0500 |
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 dbcf561a60 * tp/t/same_parser_multiple_files.t: set locale to C and
LANGUAGE to en for reproducible tests.
dbcf561a60 is described below
commit dbcf561a6024c0d4186c5c2252884900b275ed70
Author: Patrice Dumas <pertusus@free.fr>
AuthorDate: Thu Nov 28 21:09:32 2024 +0100
* tp/t/same_parser_multiple_files.t: set locale to C and LANGUAGE to
en for reproducible tests.
---
ChangeLog | 5 +++++
tp/t/same_parser_multiple_files.t | 4 ++++
2 files changed, 9 insertions(+)
diff --git a/ChangeLog b/ChangeLog
index 80cd32462f..b44c09c6b7 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+2024-11-28 Patrice Dumas <pertusus@free.fr>
+
+ * tp/t/same_parser_multiple_files.t: set locale to C and LANGUAGE to
+ en for reproducible tests.
+
2024-11-27 Patrice Dumas <pertusus@free.fr>
* tp/Texinfo/XS/convert/texinfo.c (txi_general_setup),
diff --git a/tp/t/same_parser_multiple_files.t
b/tp/t/same_parser_multiple_files.t
index 691f7052fb..ce7e06ca85 100644
--- a/tp/t/same_parser_multiple_files.t
+++ b/tp/t/same_parser_multiple_files.t
@@ -7,6 +7,10 @@ use Test::More;
BEGIN { plan tests => 10; }
+# For consistent test results, use the C locale.
+$ENV{LC_ALL} = 'C';
+$ENV{LANGUAGE} = 'en';
+
use File::Spec;
# for fileparse
use File::Basename;
[Prev in Thread] |
Current Thread |
[Next in Thread] |
- branch master updated: * tp/t/same_parser_multiple_files.t: set locale to C and LANGUAGE to en for reproducible tests.,
Patrice Dumas <=