diff options
author | Gisle Aas <gisle@activestate.com> | 2006-01-06 13:57:27 +0000 |
---|---|---|
committer | Gisle Aas <gisle@activestate.com> | 2006-01-06 13:57:27 +0000 |
commit | 7850f74cebcc11cc1e593574033a8cdd463b0a01 (patch) | |
tree | 1f3fc395261ff7453b4d730d1cfeb4dce0524fd0 /t/run | |
parent | c86a4f2e37a2a05a9cad736617540ad66d32fda9 (diff) | |
download | perl-7850f74cebcc11cc1e593574033a8cdd463b0a01.tar.gz |
Move "DEVEL####" marker to the 'perl -v' output.
This avoids problem with using STRINGIFY in patchlevel.h
(ref msg <43BE4BAC.6010701@uk.radan.com> posted to p5p).
p4raw-id: //depot/perl@26672
Diffstat (limited to 't/run')
-rw-r--r-- | t/run/switches.t | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/t/run/switches.t b/t/run/switches.t index a81a962fb1..1f6cf66131 100644 --- a/t/run/switches.t +++ b/t/run/switches.t @@ -237,7 +237,7 @@ SWTESTPM my $v = sprintf "%vd", $^V; like( runperl( switches => ['-v'] ), - qr/This is perl, v$v built for $Config{archname}.+Copyright.+Larry Wall.+Artistic License.+GNU General Public License/s, + qr/This is perl, v$v (?:DEVEL\d+ )?built for \Q$Config{archname}\E.+Copyright.+Larry Wall.+Artistic License.+GNU General Public License/s, '-v looks okay' ); } |