diff options
author | jan.nijtmans <nijtmans@users.sourceforge.net> | 2024-01-27 11:59:26 (GMT) |
---|---|---|
committer | jan.nijtmans <nijtmans@users.sourceforge.net> | 2024-01-27 11:59:26 (GMT) |
commit | 4c4354baf8c359f740ee00c891d76d5f81bf8c5e (patch) | |
tree | 5cb2dd27ebf923baa64c9ffdf0864b4c282a121e | |
parent | b098e6a2189e87427ee4498789b2c9b1979c5c4d (diff) | |
parent | 854b7843239099dbf9cbe6511b64f334da7cb066 (diff) | |
download | tcl-4c4354baf8c359f740ee00c891d76d5f81bf8c5e.zip tcl-4c4354baf8c359f740ee00c891d76d5f81bf8c5e.tar.gz tcl-4c4354baf8c359f740ee00c891d76d5f81bf8c5e.tar.bz2 |
Merge 8.6
-rw-r--r-- | library/word.tcl | 2 | ||||
-rw-r--r-- | tests/word.test | 117 |
2 files changed, 52 insertions, 67 deletions
diff --git a/library/word.tcl b/library/word.tcl index 5b6131d..ca15e12 100644 --- a/library/word.tcl +++ b/library/word.tcl @@ -148,7 +148,7 @@ proc tcl_startOfPreviousWord {str start} { variable ::tcl::WordBreakRE set word {-1 -1} if {$start > 0} { - regexp -indices -- $WordBreakRE(previous) [string range [string range $str 0 $start] 0 end-1]\ + regexp -indices -- $WordBreakRE(previous) [string range [string range $str 0 $start] 0 end-1] \ result word } return [lindex $word 0] diff --git a/tests/word.test b/tests/word.test index f616064..de5c985 100644 --- a/tests/word.test +++ b/tests/word.test @@ -1,7 +1,7 @@ # This file is a Tcl script to test the [tcl_startOf|endOf]* functions in # word.tcl. It is organized in the standard fashion for Tcl tests. # -# Copyright (c) 2024 Jan Nijtmans +# Copyright © 2024 Jan Nijtmans # All rights reserved. if {"::tcltest" ni [namespace children]} { @@ -12,174 +12,159 @@ if {"::tcltest" ni [namespace children]} { ::tcltest::loadTestedCommands catch [list package require -exact tcl::test [info patchlevel]] -test word-3.0 {tcl_endOfWord} -body { +test word-1.0 {tcl_endOfWord} -body { tcl_endOfWord "ab cd" -1 } -result 2 -test word-3.1 {tcl_endOfWord} -body { +test word-1.1 {tcl_endOfWord} -body { tcl_endOfWord "ab cd" 0 } -result 2 -test word-3.2 {tcl_endOfWord} -body { +test word-1.2 {tcl_endOfWord} -body { tcl_endOfWord "ab cd" 1 } -result 2 -test word-3.3 {tcl_endOfWord} -body { +test word-1.3 {tcl_endOfWord} -body { tcl_endOfWord "ab cd" 2 } -result -1 -test word-3.4 {tcl_endOfWord} -body { +test word-1.4 {tcl_endOfWord} -body { tcl_endOfWord "ab cd" 3 } -result -1 -test word-3.5 {tcl_endOfWord} -body { +test word-1.5 {tcl_endOfWord} -body { tcl_endOfWord "ab cd" 4 } -result -1 -test word-3.6 {tcl_endOfWord} -body { +test word-1.6 {tcl_endOfWord} -body { tcl_endOfWord "ab cd" 5 } -result -1 -test word-3.7 {tcl_endOfWord} -body { +test word-1.7 {tcl_endOfWord} -body { tcl_endOfWord "ab cd" end } -result -1 -test word-3.8 {tcl_endOfWord} -body { - tcl_endOfWord "ab cd" {} -} -result 2 -test word-3.9 {tcl_endOfWord} -body { +test word-1.8 {tcl_endOfWord} -body { tcl_endOfWord "ab cd" end-1 } -result -1 -test word-4.0 {tcl_startOfPreviousWord} -body { +test word-2.0 {tcl_startOfPreviousWord} -body { tcl_startOfPreviousWord "ab cd" -1 } -result -1 -test word-4.1 {tcl_startOfPreviousWord} -body { +test word-2.1 {tcl_startOfPreviousWord} -body { tcl_startOfPreviousWord "ab cd" 0 } -result -1 -test word-4.2 {tcl_startOfPreviousWord} -body { +test word-2.2 {tcl_startOfPreviousWord} -body { tcl_startOfPreviousWord "ab cd" 1 } -result 0 -test word-4.3 {tcl_startOfPreviousWord} -body { +test word-2.3 {tcl_startOfPreviousWord} -body { tcl_startOfPreviousWord "ab cd" 2 } -result 0 -test word-4.4 {tcl_startOfPreviousWord} -body { +test word-2.4 {tcl_startOfPreviousWord} -body { tcl_startOfPreviousWord "ab cd" 3 } -result 0 -test word-4.5 {tcl_startOfPreviousWord} -body { +test word-2.5 {tcl_startOfPreviousWord} -body { tcl_startOfPreviousWord "ab cd" 4 } -result 3 -test word-4.6 {tcl_startOfPreviousWord} -body { +test word-2.6 {tcl_startOfPreviousWord} -body { tcl_startOfPreviousWord "ab cd" 5 } -result 3 -test word-4.7 {tcl_startOfPreviousWord} -body { +test word-2.7 {tcl_startOfPreviousWord} -body { tcl_startOfPreviousWord "ab cd" end } -result 3 -test word-4.8 {tcl_startOfPreviousWord} -body { - tcl_startOfPreviousWord "ab cd" {} -} -result -1 -test word-4.9 {tcl_startOfPreviousWord, bug [16e25e1402]} -body { +test word-2.8 {tcl_startOfPreviousWord, bug [16e25e1402]} -body { tcl_startOfPreviousWord "ab cd" end-1 } -result 0 -test word-5.0 {tcl_startOfNextWord} -body { +test word-3.0 {tcl_startOfNextWord} -body { tcl_startOfNextWord "ab cd" -1 } -result 3 -test word-5.1 {tcl_startOfNextWord} -body { +test word-3.1 {tcl_startOfNextWord} -body { tcl_startOfNextWord "ab cd" 0 } -result 3 -test word-5.2 {tcl_startOfNextWord} -body { +test word-3.2 {tcl_startOfNextWord} -body { tcl_startOfNextWord "ab cd" 1 } -result 3 -test word-5.3 {tcl_startOfNextWord} -body { +test word-3.3 {tcl_startOfNextWord} -body { tcl_startOfNextWord "ab cd" 2 } -result 3 -test word-5.4 {tcl_startOfNextWord} -body { +test word-3.4 {tcl_startOfNextWord} -body { tcl_startOfNextWord "ab cd" 3 } -result -1 -test word-5.5 {tcl_startOfNextWord} -body { +test word-3.5 {tcl_startOfNextWord} -body { tcl_startOfNextWord "ab cd" 4 } -result -1 -test word-5.6 {tcl_startOfNextWord} -body { +test word-3.6 {tcl_startOfNextWord} -body { tcl_startOfNextWord "ab cd" 5 } -result -1 -test word-5.7 {tcl_startOfNextWord} -body { +test word-3.7 {tcl_startOfNextWord} -body { tcl_startOfNextWord "ab cd" end } -result -1 -test word-5.8 {tcl_startOfNextWord} -body { - tcl_startOfNextWord "ab cd" {} -} -result 3 -test word-5.9 {tcl_startOfNextWord} -body { +test word-3.8 {tcl_startOfNextWord} -body { tcl_startOfNextWord "ab cd" end-1 } -result -1 -test word-6.0 {tcl_wordBreakBefore} -body { +test word-4.0 {tcl_wordBreakBefore} -body { tcl_wordBreakBefore "ab cd" -1 } -result -1 -test word-6.1 {tcl_wordBreakBefore} -body { +test word-4.1 {tcl_wordBreakBefore} -body { tcl_wordBreakBefore "ab cd" 0 } -result -1 -test word-6.2 {tcl_wordBreakBefore} -body { +test word-4.2 {tcl_wordBreakBefore} -body { tcl_wordBreakBefore "ab cd" 1 } -result -1 -test word-6.3 {tcl_wordBreakBefore} -body { +test word-4.3 {tcl_wordBreakBefore} -body { tcl_wordBreakBefore "ab cd" 2 } -result 2 -test word-6.4 {tcl_wordBreakBefore} -body { +test word-4.4 {tcl_wordBreakBefore} -body { tcl_wordBreakBefore "ab cd" 3 } -result 3 -test word-6.5 {tcl_wordBreakBefore} -body { +test word-4.5 {tcl_wordBreakBefore} -body { tcl_wordBreakBefore "ab cd" 4 } -result 3 -test word-6.6 {tcl_wordBreakBefore} -body { +test word-4.6 {tcl_wordBreakBefore} -body { tcl_wordBreakBefore "ab cd" 5 } -result 3 -test word-6.7 {tcl_wordBreakBefore} -body { +test word-4.7 {tcl_wordBreakBefore} -body { tcl_wordBreakBefore "ab cd" end } -result 3 -test word-6.8 {tcl_wordBreakBefore} -body { - tcl_wordBreakBefore "ab cd" {} -} -result -1 -test word-6.9 {tcl_wordBreakBefore} -body { +test word-4.8 {tcl_wordBreakBefore} -body { tcl_startOfNextWord "ab cd" end-1 } -result -1 -test word-7.0 {tcl_wordBreakAfter} -body { +test word-5.0 {tcl_wordBreakAfter} -body { tcl_wordBreakAfter "ab cd" -1 } -result 2 -test word-7.1 {tcl_wordBreakAfter} -body { +test word-5.1 {tcl_wordBreakAfter} -body { tcl_wordBreakAfter "ab cd" 0 } -result 2 -test word-7.2 {tcl_wordBreakAfter} -body { +test word-5.2 {tcl_wordBreakAfter} -body { tcl_wordBreakAfter "ab cd" 1 } -result 2 -test word-7.3 {tcl_wordBreakAfter} -body { +test word-5.3 {tcl_wordBreakAfter} -body { tcl_wordBreakAfter "ab cd" 2 } -result 3 -test word-7.4 {tcl_wordBreakAfter} -body { +test word-5.4 {tcl_wordBreakAfter} -body { tcl_wordBreakAfter "ab cd" 3 } -result -1 -test word-7.5 {tcl_wordBreakAfter} -body { +test word-5.5 {tcl_wordBreakAfter} -body { tcl_wordBreakAfter "ab cd" 4 } -result -1 -test word-7.6 {tcl_wordBreakAfter} -body { +test word-5.6 {tcl_wordBreakAfter} -body { tcl_wordBreakAfter "ab cd" 5 } -result -1 -test word-7.7 {tcl_wordBreakAfter} -body { +test word-5.7 {tcl_wordBreakAfter} -body { tcl_wordBreakAfter "ab cd" end } -result -1 -test word-7.8 {tcl_wordBreakAfter} -body { - tcl_wordBreakAfter "ab cd" {} -} -result 2 -test word-7.9 {tcl_wordBreakAfter} -body { +test word-5.8 {tcl_wordBreakAfter} -body { tcl_wordBreakAfter "ab cd" end-1 } -result -1 -test word-8.2 {tcl_startOfPreviousWord} -body { +test word-6.0 {tcl_startOfPreviousWord} -body { tcl_startOfPreviousWord a b c d } -returnCodes 1 -result {wrong # args: should be "tcl_startOfPreviousWord str start"} -test word-8.3 {tcl_startOfNextWord} -body { +test word-6.1 {tcl_startOfNextWord} -body { tcl_startOfNextWord a b c d } -returnCodes 1 -result {wrong # args: should be "tcl_startOfNextWord str start"} -test word-8.4 {tcl_endOfWord} -body { +test word-6.2 {tcl_endOfWord} -body { tcl_endOfWord a b c d } -returnCodes 1 -result {wrong # args: should be "tcl_endOfWord str start"} -test word-8.5 {tcl_wordBreakBefore} -body { +test word-6.3 {tcl_wordBreakBefore} -body { tcl_wordBreakBefore a b c d } -returnCodes 1 -result {wrong # args: should be "tcl_wordBreakBefore str start"} -test word-8.6 {tcl_wordBreakAfter} -body { +test word-6.4 {tcl_wordBreakAfter} -body { tcl_wordBreakAfter a b c d } -returnCodes 1 -result {wrong # args: should be "tcl_wordBreakAfter str start"} |