diff options
author | dkf <donal.k.fellows@manchester.ac.uk> | 2018-11-10 07:29:08 (GMT) |
---|---|---|
committer | dkf <donal.k.fellows@manchester.ac.uk> | 2018-11-10 07:29:08 (GMT) |
commit | cbbc8d66b85371d63ec183c6712ae6c769ab9403 (patch) | |
tree | 622a92f5146c5468c67fd0ef3b1b49bb9a5401c5 /tests/unixInit.test | |
parent | 155f409a383ca0411146efb82246e52ec12270fe (diff) | |
download | tcl-cbbc8d66b85371d63ec183c6712ae6c769ab9403.zip tcl-cbbc8d66b85371d63ec183c6712ae6c769ab9403.tar.gz tcl-cbbc8d66b85371d63ec183c6712ae6c769ab9403.tar.bz2 |
Make the macosx build able to succeed
Diffstat (limited to 'tests/unixInit.test')
-rw-r--r-- | tests/unixInit.test | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/tests/unixInit.test b/tests/unixInit.test index 05338ed..d0f83f3 100644 --- a/tests/unixInit.test +++ b/tests/unixInit.test @@ -336,8 +336,7 @@ test unixInit-3.1 {TclpSetInitialEncodings} -constraints { return $enc } -cleanup { unset -nocomplain env(LANG) -} -match regexp -result [expr { - ($tcl_platform(os) eq "Darwin") ? "^utf-8$" : "^iso8859-15?$"}] +} -match regexp -result {^(iso8859-15?|utf-8)$} test unixInit-3.2 {TclpSetInitialEncodings} -setup { catch {set oldlc_all $env(LC_ALL)} } -constraints {unix stdio} -body { |