summaryrefslogtreecommitdiffstats
path: root/tests/safe.test
diff options
context:
space:
mode:
authordkf <donal.k.fellows@manchester.ac.uk>2009-12-29 13:13:17 (GMT)
committerdkf <donal.k.fellows@manchester.ac.uk>2009-12-29 13:13:17 (GMT)
commite0a526e0845027a3332645c718bb528d55bba601 (patch)
tree91433bca2e8f90eb8c420ae39a1d45d8d3eac575 /tests/safe.test
parentb44d188690574bc4195ab1d381786b89ff54f41a (diff)
downloadtcl-e0a526e0845027a3332645c718bb528d55bba601.zip
tcl-e0a526e0845027a3332645c718bb528d55bba601.tar.gz
tcl-e0a526e0845027a3332645c718bb528d55bba601.tar.bz2
[Bug 2895741]: Make min() and max() supported in safe interpreters.
Diffstat (limited to 'tests/safe.test')
-rw-r--r--tests/safe.test6
1 files changed, 3 insertions, 3 deletions
diff --git a/tests/safe.test b/tests/safe.test
index ed92aba..e4e3596 100644
--- a/tests/safe.test
+++ b/tests/safe.test
@@ -10,7 +10,7 @@
# See the file "license.terms" for information on usage and redistribution
# of this file, and for a DISCLAIMER OF ALL WARRANTIES.
#
-# RCS: @(#) $Id: safe.test,v 1.22.4.5 2009/12/28 13:48:51 dkf Exp $
+# RCS: @(#) $Id: safe.test,v 1.22.4.6 2009/12/29 13:13:18 dkf Exp $
package require Tcl 8.5
@@ -72,8 +72,8 @@ test safe-2.3 {creating safe interpreters, should have no unexpected aliases} {
interp create a -safe
set l [a aliases]
interp delete a
- set l
-} {clock}
+ lsort $l
+} {::tcl::mathfunc::max ::tcl::mathfunc::min clock}
test safe-3.1 {calling safe::interpInit is safe} {
catch {safe::interpDelete a}