summaryrefslogtreecommitdiffstats
path: root/tests/regexp.test
diff options
context:
space:
mode:
authorjan.nijtmans <nijtmans@users.sourceforge.net>2016-04-05 08:18:25 (GMT)
committerjan.nijtmans <nijtmans@users.sourceforge.net>2016-04-05 08:18:25 (GMT)
commit0907a9675cbeef27c901d8393273da305ce4329e (patch)
tree8dacc3ea1b64f88ed43bc0eaf9aca2cdbaaf63e4 /tests/regexp.test
parent874f60a5b93116576493bfd061a7b01639532fbb (diff)
parent99ec9379ce6008e7e1cde6cd70228189bc79b34a (diff)
downloadtcl-0907a9675cbeef27c901d8393273da305ce4329e.zip
tcl-0907a9675cbeef27c901d8393273da305ce4329e.tar.gz
tcl-0907a9675cbeef27c901d8393273da305ce4329e.tar.bz2
merge trunk
Diffstat (limited to 'tests/regexp.test')
-rw-r--r--tests/regexp.test10
1 files changed, 5 insertions, 5 deletions
diff --git a/tests/regexp.test b/tests/regexp.test
index 9fff262..4ffdbdb 100644
--- a/tests/regexp.test
+++ b/tests/regexp.test
@@ -480,7 +480,7 @@ test regexp-11.12 {regsub without final variable name returns value} {
} {a,bcd,c,ea,bcfd,cf,e}
# This test crashes on the Mac unless you increase the Stack Space to about 1
-# Meg. This is probably bigger than most users want...
+# Meg. This is probably bigger than most users want...
# 8.2.3 regexp reduced stack space requirements, but this should be
# tested again
test regexp-12.1 {Tcl_RegExpExec: large number of subexpressions} {macCrash} {
@@ -742,10 +742,10 @@ test regexp-19.2 {regsub null replacement} {
test regexp-20.1 {regsub shared object shimmering} {
# Bug #461322
- set a abcdefghijklmnopqurstuvwxyz
- set b $a
- set c abcdefghijklmnopqurstuvwxyz0123456789
- regsub $a $c $b d
+ 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} {