summaryrefslogtreecommitdiffstats
path: root/tests/main.test
diff options
context:
space:
mode:
authorhobbs <hobbs@noemail.net>2008-04-07 23:14:36 (GMT)
committerhobbs <hobbs@noemail.net>2008-04-07 23:14:36 (GMT)
commitbf0d424d64f6b9d8dbd831a56946ae38856d0b68 (patch)
treedfaf40a6b54e37f82f0ae776839fe5fd63d377a5 /tests/main.test
parenta7c58125f79e0ea9f5911e29a5a17200d85aa49e (diff)
downloadtk-bf0d424d64f6b9d8dbd831a56946ae38856d0b68.zip
tk-bf0d424d64f6b9d8dbd831a56946ae38856d0b68.tar.gz
tk-bf0d424d64f6b9d8dbd831a56946ae38856d0b68.tar.bz2
* generic/tkWindow.c (Initialize): fix double-free on Tk_ParseArgv
* tests/main.test (main-3.*): error. [Bug 1937135] FossilOrigin-Name: 68c0a2fc83c9e9a11b853fc624e9f9fa261b9086
Diffstat (limited to 'tests/main.test')
-rw-r--r--tests/main.test26
1 files changed, 25 insertions, 1 deletions
diff --git a/tests/main.test b/tests/main.test
index d37240f..ede20f3 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.11 2008/04/07 23:14:39 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