diff options
author | Yves Orton <demerphq@gmail.com> | 2009-09-10 20:39:13 +0200 |
---|---|---|
committer | Yves Orton <demerphq@gmail.com> | 2009-09-10 20:39:13 +0200 |
commit | a4499558ecf2e75d73756479898bf8c8dbe8a6f6 (patch) | |
tree | 5d59ba9723d6b5d114e1a72d97eccc3723799565 /t/re/qrstack.t | |
parent | 2c2969659ae1c534e7f3fac9e7a7d186defd9943 (diff) | |
download | perl-a4499558ecf2e75d73756479898bf8c8dbe8a6f6.tar.gz |
move regex related tests out of t/op/ into t/re/
Diffstat (limited to 't/re/qrstack.t')
-rw-r--r-- | t/re/qrstack.t | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/t/re/qrstack.t b/t/re/qrstack.t new file mode 100644 index 0000000000..47d190d055 --- /dev/null +++ b/t/re/qrstack.t @@ -0,0 +1,11 @@ +#!./perl -w + +BEGIN { + chdir 't' if -d 't'; + @INC = '../lib'; + require './test.pl'; +} + +plan tests => 1; + +ok(defined [(1)x127,qr//,1]->[127], "qr// should extend the stack properly"); |