Skip to content

Commit 1f03351

Browse files
committed
Find *inline.h differently in args_assert.t.
That glob wasn't working right on VMS so the test was failing. We're already reading through MANIFEST so we might as well just match what we want from there.
1 parent 6df8187 commit 1f03351

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

t/porting/args_assert.t

+2-2
Original file line numberDiff line numberDiff line change
@@ -43,9 +43,9 @@ if (!@ARGV) {
4343
while (<$fh>) {
4444
# *.c or */*.c
4545
push @ARGV, $prefix . $1 if m!^((?:[^/]+/)?[^/]+\.c)\t!;
46+
# Special case the *inline.h since they behave like *.c
47+
push @ARGV, $prefix . $1 if m!^(([^/]+)?inline\.h)\t!;
4648
}
47-
# Special case the *inline.h since they behave like *.c
48-
push @ARGV, glob "$prefix/*inline.h";
4949
}
5050

5151
while (<>) {

0 commit comments

Comments
 (0)