diff options
author | fvogel <fvogelnew1@free.fr> | 2012-02-28 20:14:21 (GMT) |
---|---|---|
committer | fvogel <fvogelnew1@free.fr> | 2012-02-28 20:14:21 (GMT) |
commit | 220b6aecbb178564d3ee630cf19c6aa8ae93a67d (patch) | |
tree | add824c5019c64a12957fa0d0b75cc242296b5f7 /tests/textMark.test | |
parent | 45e67a168fc74dc40011588fc29a08e46d5e8bd6 (diff) | |
parent | 1487608db176d526e0c03938073340f5f2a068eb (diff) | |
download | tk-220b6aecbb178564d3ee630cf19c6aa8ae93a67d.zip tk-220b6aecbb178564d3ee630cf19c6aa8ae93a67d.tar.gz tk-220b6aecbb178564d3ee630cf19c6aa8ae93a67d.tar.bz2 |
[Bug-1630262], [Bug-1615425]: segfault when deleting lines or tagging outside of the -startline/-endline range with peer text widgets. [Bug-3487407]: Weird text indices.
Diffstat (limited to 'tests/textMark.test')
-rw-r--r-- | tests/textMark.test | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/tests/textMark.test b/tests/textMark.test index c1138ac..67b9ae5 100644 --- a/tests/textMark.test +++ b/tests/textMark.test @@ -170,6 +170,13 @@ test textMark-6.4 {TkTextMarkNameToIndex, with mark outside -startline/-endline .pt configure -startline {} -endline {} .t mark unset mymark } -result {1 {bad text index "mymark"} 1.0 1.0 1 {bad text index "mymark"} L 1 {bad text index "mymark"}} +test textMark-6.5 {insert and current marks in an empty peer - bug 3487407} -body { + .t mark set insert 1.0 + .t configure -start 5 -end 5 + set res [.t index insert] +} -cleanup { + .t configure -startline {} -endline {} +} -result {1.0} catch {eval {.t mark unset} [.t mark names]} test textMark-7.1 {MarkFindNext - invalid mark name} haveCourier12 { |