[gdb/testsuite] Add have_host_locale
authorTom de Vries <tdevries@suse.de>
Wed, 21 Jun 2023 14:29:04 +0000 (16:29 +0200)
committerTom de Vries <tdevries@suse.de>
Wed, 21 Jun 2023 14:29:04 +0000 (16:29 +0200)
With test-case gdb.tui/pr30056.exp, I run into:
...
sh: warning: setlocale: LC_ALL: cannot change locale (C.UTF-8)^M
...
and then subsequently into:
...
WARNING: timeout in accept_gdb_output
FAIL: gdb.tui/pr30056.exp: Control-C
...

This is on a CentOS 7 distro for powerpc64le.

Either it has no C.UTF-8 support, or it's not installed:
...
$ locale -a | grep ^C
C
$
...

Fix this by:
- adding a new proc have_host_locale, and
- using it in all test-cases using setenv LC_ALL.

Tested on powerpc64le-linux and x86_64-linux.

gdb/testsuite/gdb.ada/non-ascii-latin-1.exp
gdb/testsuite/gdb.ada/non-ascii-latin-3.exp
gdb/testsuite/gdb.ada/non-ascii-utf-8.exp
gdb/testsuite/gdb.base/utf8-identifiers.exp
gdb/testsuite/gdb.rust/unicode.exp
gdb/testsuite/gdb.tui/pr30056.exp
gdb/testsuite/lib/gdb.exp

index 3cdf53dcdfc735c05dfe4ff903b7f73bc7414c92..877a864717ba2f3c57ca5ab5c69f7b8861386b81 100644 (file)
@@ -18,6 +18,7 @@
 load_lib "ada.exp"
 
 require allow_ada_tests
+require {have_host_locale C.UTF-8}
 
 # Enable basic use of UTF-8.  LC_ALL gets reset for each testfile.  We
 # want this despite the program itself using Latin-1, as this test is
index 5b5ae292177ad09409435d8d0038b66b998cbe44..285fa23e16a3ef0f76a148b9d0dc4df312e582aa 100644 (file)
@@ -18,6 +18,7 @@
 load_lib "ada.exp"
 
 require allow_ada_tests
+require {have_host_locale C.UTF-8}
 
 # Enable basic use of UTF-8.  LC_ALL gets reset for each testfile.  We
 # want this despite the program itself using Latin-1, as this test is
index c1211619ca8aa166d28da2f6e36e90fe38219fae..acf13fc84ce378c214045fb635bec14ae98a9f89 100644 (file)
@@ -18,6 +18,7 @@
 load_lib "ada.exp"
 
 require allow_ada_tests
+require {have_host_locale C.UTF-8}
 
 # Enable basic use of UTF-8.  LC_ALL gets reset for each testfile.
 setenv LC_ALL C.UTF-8
index 48dce3cdc118e5a8f8ccdcfde940a9bcc2abcbd3..54a9a471f26f163d6431b07c493da2fd2f357065 100644 (file)
@@ -25,6 +25,7 @@ if { [is_c_compiler_gcc] } {
     # Gcc fully supports fextended-identifiers starting GCC 5.
     require {expr [gcc_major_version] >= 5}
 }
+require {have_host_locale C.UTF-8}
 
 standard_testfile
 
index 97b37af316aefb40f76be99125e141c5df0c0a80..62619e8e7697f08420ba5c163b713622df6f069f 100644 (file)
@@ -18,6 +18,7 @@
 load_lib rust-support.exp
 require allow_rust_tests
 require {can_compile rust}
+require {have_host_locale C.UTF-8}
 
 # Non-ASCII identifiers were allowed starting in 1.53.
 require {rust_at_least 1.53}
index 48eaa5735b8f1cb3d36d258ea09c026c629a685c..55229dc19658610ec2cea01a76335947bafa5dbb 100644 (file)
@@ -18,6 +18,7 @@
 # This PR is fixed in the in-repo copy of readline.  System readline may or
 # may not be fixed, so skip this test-case.
 require !with_system_readline
+require {have_host_locale C.UTF-8}
 
 tuiterm_env
 
index f214a6bb54d3a6ac3f747a562cf377ba542e1acb..50fcb844183e8eda3efb46bbbdb50b4b0e37a1c3 100644 (file)
@@ -9794,5 +9794,41 @@ proc lappend_include_file { flags file } {
     }
 }
 
+# Return a list of supported host locales.
+
+gdb_caching_proc host_locales { } {
+    set result [remote_exec host "locale -a"]
+    set status [lindex $result 0]
+    set output [lindex $result 1]
+
+    if { $status != 0 } {
+       return {}
+    }
+
+    # Split into list.
+    set output [string trim $output]
+    set l [split $output \n]
+
+    # Trim items.
+    set l [lmap v $l { string trim $v }]
+
+    # Normalize items to lower-case.
+    set l [lmap v $l { string tolower $v }]
+
+    return $l
+}
+
+# Return 1 if host locale LOCALE is supported.
+
+proc have_host_locale { locale } {
+    # Normalize to lower-case.
+    set locale [string tolower $locale]
+    # Normalize to without dash.
+    set locale [string map { "-" "" } $locale]
+
+    set idx [lsearch [host_locales] $locale]
+    return [expr $idx != -1]
+}
+
 # Always load compatibility stuff.
 load_lib future.exp