Skip to content

Commit a6ee10b

Browse files
author
Chris White
committed
Don't use echo -n for testing
Darwin doesn't recognize -n as a flag, so t/05-external-command fails on Darwin.
1 parent 0cf33f7 commit a6ee10b

File tree

3 files changed

+5
-7
lines changed

3 files changed

+5
-7
lines changed

t/05-external-command.t

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ my @testcases=(
2727
['', '<?! false ?> More stuff', qr{^$} , qr{command 'false' failed: process exited}],
2828
['-k', '<?! false ?> More stuff', qr{^ More stuff$} , qr{command 'false' failed: process exited}],
2929
# Using capturing for part of the command
30-
['', '<?!echo -n "?>Hello!?<?"?>', qr{^Hello!\?$}],
30+
['', '<?!echo "?>Hello!?<?"?>', qr{^Hello!\?\n$}],
3131

3232
); #@testcases
3333

t/09-preproc.t

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
11
#!perl
2-
3-
# TODO test preprocessors
4-
exit 1;
2+
use Test::More;
3+
plan skip_all => 'Not yet implemented';

t/10-postproc.t

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
11
#!perl
2-
3-
# TODO test postprocessors
4-
exit 1;
2+
use Test::More;
3+
plan skip_all => 'Not yet implemented';

0 commit comments

Comments
 (0)