diff options
author | hobbs <hobbs> | 2008-04-07 23:14:07 (GMT) |
---|---|---|
committer | hobbs <hobbs> | 2008-04-07 23:14:07 (GMT) |
commit | 59257a7e759c68d4ce7bab029b5cd897f70cc118 (patch) | |
tree | 5298d039bc3566059b995197193fa2754f150ea9 /tests/main.test | |
parent | 15df670329afab83951959ebd133f11e71345954 (diff) | |
download | tk-59257a7e759c68d4ce7bab029b5cd897f70cc118.zip tk-59257a7e759c68d4ce7bab029b5cd897f70cc118.tar.gz tk-59257a7e759c68d4ce7bab029b5cd897f70cc118.tar.bz2 |
* generic/tkWindow.c (Initialize): fix double-free on Tk_ParseArgv
* tests/main.test (main-3.*): error. [Bug 1937135]
Diffstat (limited to 'tests/main.test')
-rw-r--r-- | tests/main.test | 26 |
1 files changed, 25 insertions, 1 deletions
diff --git a/tests/main.test b/tests/main.test index d37240f..9a02438 100644 --- a/tests/main.test +++ b/tests/main.test @@ -8,7 +8,7 @@ # Copyright (c) 1998-1999 by Scriptics Corporation. # All rights reserved. # -# RCS: @(#) $Id: main.test,v 1.10 2004/12/08 03:03:06 dgp Exp $ +# RCS: @(#) $Id: main.test,v 1.10.4.1 2008/04/07 23:14:07 hobbs Exp $ package require tcltest 2.1 eval tcltest::configure $argv @@ -99,6 +99,30 @@ test main-2.3 {Tk_MainEx: -encoding option} -constraints { removeFile script } -result {0 {-enc utf-8 script}} +test main-3.1 {Tk_ParseArgv: -help option} -constraints unix -body { + # Run only on unix as Win32 pops up native dialog + list [catch {exec [interpreter] -help} msg] $msg +} -match glob -result {1 {% Application initialization failed: Command-specific options:*}} + +test main-3.2 {Tk_ParseArgv: -help option} -setup { + set maininterp [interp create] +} -body { + $maininterp eval { set argc 1 ; set argv -help } + list [catch {load {} Tk $maininterp} msg] $msg +} -cleanup { + interp delete $maininterp +} -match glob -result {1 {Command-specific options:*}} + +test main-3.3 {Tk_ParseArgv: -help option} -setup { + set maininterp [interp create] +} -body { + # Repeat of 3.2 to catch cleanup, eg Bug 1927135 + $maininterp eval { set argc 1 ; set argv -help } + list [catch {load {} Tk $maininterp} msg] $msg +} -cleanup { + interp delete $maininterp +} -match glob -result {1 {Command-specific options:*}} + # cleanup cleanupTests return |