mirror of
https://git.savannah.gnu.org/git/guile.git
synced 2025-05-20 11:40:18 +02:00
Modify regexp.test to work better with mac/darwin
* test-suite/tests/regexp.test (set-latin-1): also add .ISO8859-1 as a possible extension for latin-1 locales. Use set-latin-1 exclusively to set the locale for tests.
This commit is contained in:
parent
03d80c0327
commit
d71db1f9a9
1 changed files with 6 additions and 2 deletions
|
@ -56,7 +56,11 @@
|
|||
'("fr_FR" "es_MX" "es_ES" "en_GB" "en_US" "de_DE" "pt_PT"))
|
||||
(map (lambda (name)
|
||||
(string-append name ".iso88591"))
|
||||
'("fr_FR" "es_MX" "es_ES" "en_GB" "en_US" "de_DE" "pt_PT"))))
|
||||
'("fr_FR" "es_MX" "es_ES" "en_GB" "en_US" "de_DE" "pt_PT"))
|
||||
(map (lambda (name)
|
||||
(string-append name ".ISO8859-1"))
|
||||
'("fr_FR" "es_MX" "es_ES" "en_GB" "en_US" "de_DE" "pt_PT"))
|
||||
))
|
||||
(begin
|
||||
(false-if-exception (set-port-encoding! (current-input-port)
|
||||
"ISO-8859-1"))
|
||||
|
@ -226,7 +230,7 @@
|
|||
(= 2 (match:end m)))))))
|
||||
|
||||
(pass-if "string of all chars"
|
||||
(setbinary)
|
||||
(set-latin-1)
|
||||
(let ((m (regexp-exec (make-regexp (regexp-quote allchars)
|
||||
flag) allchars)))
|
||||
(and (= 0 (match:start m))
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue