diff options
author | jan.nijtmans <nijtmans@users.sourceforge.net> | 2020-10-11 16:40:39 (GMT) |
---|---|---|
committer | jan.nijtmans <nijtmans@users.sourceforge.net> | 2020-10-11 16:40:39 (GMT) |
commit | 9a1a8cdddc762590ba680992219159244f63d945 (patch) | |
tree | 2592cf0ea236cc473d39d379962f2ceb91b3b1d3 /tests/all.tcl | |
parent | f32cb454d68308c1ad941d43f3eaca29db6ada49 (diff) | |
download | tk-9a1a8cdddc762590ba680992219159244f63d945.zip tk-9a1a8cdddc762590ba680992219159244f63d945.tar.gz tk-9a1a8cdddc762590ba680992219159244f63d945.tar.bz2 |
3 more select-* testcases which sometimes fail on Travis' Ubuntu environment
Eliminate the use of TCL_CFGVAL_ENCODING, it isn't actually needed.
Run all test-cases with system encoding set to "utf-8", so we get consistant behavior with or without TIP #587
Diffstat (limited to 'tests/all.tcl')
-rw-r--r-- | tests/all.tcl | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/tests/all.tcl b/tests/all.tcl index 3b6b75f..46721a2 100644 --- a/tests/all.tcl +++ b/tests/all.tcl @@ -4,7 +4,7 @@ # tests. Execute it by invoking "source all.tcl" when running tktest # in this directory. # -# Copyright (c) 1998-1999 by Scriptics Corporation. +# Copyright © 1998-1999 by Scriptics Corporation. # # See the file "license.terms" for information on usage and redistribution # of this file, and for a DISCLAIMER OF ALL WARRANTIES. @@ -17,4 +17,5 @@ tcltest::configure -loadfile \ [file join [tcltest::testsDirectory] constraints.tcl] tcltest::configure -singleproc 1 set ErrorOnFailures [info exists env(ERROR_ON_FAILURES)] +encoding system utf-8 if {[tcltest::runAllTests] && $ErrorOnFailures} {exit 1} |