projects
/
perl.git
/ commitdiff
free
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
(parent:
cdd0648
)
porting/args_assert.t: Needs to look in inline.h too
author
Karl Williamson <public@khwilliamson.com>
Sun, 30 Dec 2012 05:02:49 +0000 (22:02 -0700)
committer
Karl Williamson <public@khwilliamson.com>
Sun, 13 Jan 2013 01:20:05 +0000 (18:20 -0700)
inline.h is a special header file that contains C functions, and hence
perhaps PERL_ARGS_ASSERTS.
t/porting/args_assert.t
patch
|
blob
|
blame
|
history
diff --git
a/t/porting/args_assert.t
b/t/porting/args_assert.t
index
e1a2fa5
..
27e9bf2
100644
(file)
--- a/
t/porting/args_assert.t
+++ b/
t/porting/args_assert.t
@@
-39,6
+39,8
@@
if (!@ARGV) {
# *.c or */*.c
push @ARGV, $prefix . $1 if m!^((?:[^/]+/)?[^/]+\.c)\t!;
}
+ push @ARGV, $prefix . 'inline.h'; # Special case this '.h' which acts like
+ # a '.c'
}
while (<>) {