diff options
author | dkf <donal.k.fellows@manchester.ac.uk> | 2008-12-01 15:22:54 (GMT) |
---|---|---|
committer | dkf <donal.k.fellows@manchester.ac.uk> | 2008-12-01 15:22:54 (GMT) |
commit | 1d77ae594ff85f4e2d248e6b99102d5c9265c8a1 (patch) | |
tree | ecb893ca7cef67085701c2fe7a6dbc943b98b934 /tests | |
parent | 356517f22ce69c8aed7a5a9f6792be1065112f75 (diff) | |
download | tcl-1d77ae594ff85f4e2d248e6b99102d5c9265c8a1.zip tcl-1d77ae594ff85f4e2d248e6b99102d5c9265c8a1.tar.gz tcl-1d77ae594ff85f4e2d248e6b99102d5c9265c8a1.tar.bz2 |
Fix [Bug 2371623] with a constraint.
Diffstat (limited to 'tests')
-rw-r--r-- | tests/cmdAH.test | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/tests/cmdAH.test b/tests/cmdAH.test index b5408dd..da554ce 100644 --- a/tests/cmdAH.test +++ b/tests/cmdAH.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: cmdAH.test,v 1.64 2008/11/29 18:17:19 dkf Exp $ +# RCS: @(#) $Id: cmdAH.test,v 1.65 2008/12/01 15:22:55 dkf Exp $ if {[lsearch [namespace children] ::tcltest] == -1} { package require tcltest 2.1 @@ -1568,12 +1568,13 @@ test cmdAH-32.5 {file tempfile - templates} -constraints unix -body { } -cleanup { catch {file delete $name} } -result ok -test cmdAH-32.6 {file tempfile - templates} -constraints unix -body { +# Not portable; not all unix systems have mkstemps() +test cmdAH-32.6 {file tempfile - templates} -body { set template [file join $dirfile foo] close [file tempfile name $template.bar] expr {[string match $template*.bar $name] ? "ok" : "$template.bar produced $name"} -} -cleanup { +} -constraints {unix nonPortable} -cleanup { catch {file delete $name} } -result ok |