diff options
author | dkf <donal.k.fellows@manchester.ac.uk> | 2014-09-09 19:49:08 (GMT) |
---|---|---|
committer | dkf <donal.k.fellows@manchester.ac.uk> | 2014-09-09 19:49:08 (GMT) |
commit | e19c2ce585d7fe309059bb96044b08dbfa850a6b (patch) | |
tree | 0e1dfc6cdd11a98cd4dcc4114975380736e527fd /tests | |
parent | 04d10eb983cb26686f38383404b6b6ef9876f9e1 (diff) | |
download | tcl-e19c2ce585d7fe309059bb96044b08dbfa850a6b.zip tcl-e19c2ce585d7fe309059bb96044b08dbfa850a6b.tar.gz tcl-e19c2ce585d7fe309059bb96044b08dbfa850a6b.tar.bz2 |
[84af1192f5]: [regsub] compiler no longer confused by quantification handling.
Diffstat (limited to 'tests')
-rw-r--r-- | tests/regexpComp.test | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/tests/regexpComp.test b/tests/regexpComp.test index 7be1195..01ef06d 100644 --- a/tests/regexpComp.test +++ b/tests/regexpComp.test @@ -526,6 +526,11 @@ test regexpComp-9.6 {-all option to regsub} { list [regsub -all ^ xxx 123 foo] $foo } } {1 123xxx} +test regexpComp-9.7 {Bug 84af1192f5: -all option to regsub} { + evalInProc { + regsub -all {\(.*} 123(qwe) "" + } +} 123 test regexpComp-10.1 {expanded syntax in regsub} { evalInProc { |