diff options
-rw-r--r-- | tests/imgPhoto.test | 10 |
1 files changed, 6 insertions, 4 deletions
diff --git a/tests/imgPhoto.test b/tests/imgPhoto.test index 341e82a..9905448 100644 --- a/tests/imgPhoto.test +++ b/tests/imgPhoto.test @@ -9,7 +9,7 @@ # # Author: Paul Mackerras (paulus@cs.anu.edu.au) # -# RCS: @(#) $Id: imgPhoto.test,v 1.15.2.3 2006/03/27 12:13:56 dkf Exp $ +# RCS: @(#) $Id: imgPhoto.test,v 1.15.2.4 2006/03/27 15:40:38 dkf Exp $ package require tcltest 2.1 namespace import -force tcltest::configure @@ -653,7 +653,9 @@ hciva9/Ovbv37+BzBgEEADs= catch {file delete -force $filename} set result } 1 -test imgPhoto-14.2 {GIF -index handler buffer sizing} { +test imgPhoto-14.2 {GIF -index handler buffer sizing} -setup { + set i [image create photo] +} -body { # Bug 1458234 makes this crash when trying to access buffers of the # wrong size, caused when the initial frame is not the largest frame. set data { @@ -662,10 +664,10 @@ test imgPhoto-14.2 {GIF -index handler buffer sizing} { LAMAAwAaABoAAAI0jH+gq+gfmFzQzUsr3gBybn1gIm5kaUaoubbuC8fyTNel Ohv1CSO533u8KrgbUfc5Ci/EAgA7 } - set i [image create photo] $i configure -data $data -format {gif -index 2} +} -cleanup { image delete $i -} {} +} -returnCodes error -result {no image data for this index} test imgPhoto-15.1 {photo images can fail to allocate memory gracefully} \ {nonPortable} { |