summaryrefslogtreecommitdiffstats
path: root/tests/regexpComp.test
diff options
context:
space:
mode:
authorhobbs <hobbs>2002-02-07 00:52:25 (GMT)
committerhobbs <hobbs>2002-02-07 00:52:25 (GMT)
commitab7b0d2ecb6a3cdf49109bf456aa0df5fb6369cb (patch)
tree25a443e710d5a7ddfd6fe69706d1da810938bf17 /tests/regexpComp.test
parent38ee0e28deb314012071b8b1d34e088b202e7a60 (diff)
downloadtcl-ab7b0d2ecb6a3cdf49109bf456aa0df5fb6369cb.zip
tcl-ab7b0d2ecb6a3cdf49109bf456aa0df5fb6369cb.tar.gz
tcl-ab7b0d2ecb6a3cdf49109bf456aa0df5fb6369cb.tar.bz2
extra code coverage cases
Diffstat (limited to 'tests/regexpComp.test')
-rw-r--r--tests/regexpComp.test43
1 files changed, 33 insertions, 10 deletions
diff --git a/tests/regexpComp.test b/tests/regexpComp.test
index 1a4de0f..1bb73eb 100644
--- a/tests/regexpComp.test
+++ b/tests/regexpComp.test
@@ -708,25 +708,38 @@ test regexp-18.10 {regexp -all} {
regexp -all -inline {a*} aba
} {a {} a}
test regexp-18.11 {regexp -all} {
- regexp -all -inline {^a} aaaa
+ evalInProc {
+ regexp -all -inline {^a} aaaa
+ }
} {a}
test regexp-18.12 {regexp -all -inline -indices} {
- regexp -all -inline -indices a(b(c)d|e(f)g)h abcdhaefgh
+ evalInProc {
+ regexp -all -inline -indices a(b(c)d|e(f)g)h abcdhaefgh
+ }
} {{0 4} {1 3} {2 2} {-1 -1} {5 9} {6 8} {-1 -1} {7 7}}
test regexp-19.1 {regsub null replacement} {
- regsub -all {@} {@hel@lo@} "\0a\0" result
- list $result [string length $result]
+ evalInProc {
+ regsub -all {@} {@hel@lo@} "\0a\0" result
+ list $result [string length $result]
+ }
} "\0a\0hel\0a\0lo\0a\0 14"
test regexp-20.1 {regsub shared object shimmering} {
- # Bug #461322
- set a abcdefghijklmnopqurstuvwxyz
- set b $a
- set c abcdefghijklmnopqurstuvwxyz0123456789
- regsub $a $c $b d
- list $d [string length $d] [string bytelength $d]
+ evalInProc {
+ # Bug #461322
+ set a abcdefghijklmnopqurstuvwxyz
+ set b $a
+ set c abcdefghijklmnopqurstuvwxyz0123456789
+ regsub $a $c $b d
+ list $d [string length $d] [string bytelength $d]
+ }
} [list abcdefghijklmnopqurstuvwxyz0123456789 37 37]
+test regexp-20.2 {regsub shared object shimmering with -about} {
+ evalInProc {
+ eval regexp -about abc
+ }
+} {0 {}}
test regexp-21.1 {regexp command compiling tests} {
evalInProc {
@@ -774,6 +787,16 @@ test regexp-21.9 {regexp command compiling tests} {
list [catch {regexp -- -nocase foo dogfod} msg] $msg
}
} {0 0}
+test regexp-21.10 {regexp command compiling tests} {
+ evalInProc {
+ list [regsub -all "" foo bar str] $str
+ }
+} {3 barfbarobaro}
+test regexp-21.11 {regexp command compiling tests} {
+ evalInProc {
+ list [regsub -all "" "" bar str] $str
+ }
+} {0 {}}
# cleanup
::tcltest::cleanupTests