This is a live mirror of the Perl 5 development currently hosted at
https://github.com/perl/perl5
https://perl5.git.perl.org
/
perl5.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
9cd8f85
)
Skip re tests if re not built.
author
Nicholas Clark
<nick@ccl4.org>
Fri, 18 Jun 2004 13:07:40 +0000
(13:07 +0000)
committer
Nicholas Clark
<nick@ccl4.org>
Fri, 18 Jun 2004 13:07:40 +0000
(13:07 +0000)
p4raw-id: //depot/perl@22952
ext/re/t/re.t
patch
|
blob
|
blame
|
history
diff --git
a/ext/re/t/re.t
b/ext/re/t/re.t
index
1a8f278
..
2a1923e
100644
(file)
--- a/
ext/re/t/re.t
+++ b/
ext/re/t/re.t
@@
-3,6
+3,11
@@
BEGIN {
chdir 't' if -d 't';
@INC = '../lib';
+ require Config;
+ if (($Config::Config{'extensions'} !~ /\bre\b/) ){
+ print "1..0 # Skip -- Perl configured without re module\n";
+ exit 0;
+ }
}
use strict;