From e36e13a4d36e1d31926e0b9821a15419c295dd67 Mon Sep 17 00:00:00 2001 From: "Craig A. Berry" Date: Sat, 18 Jan 2014 13:22:25 -0600 Subject: [PATCH] Fix perl5db.t test 41 on VMS. We're getting newlines in between items, and the easiest way to deal with it is make them explicit so we expect what we're getting and it's done the same everywhere. --- lib/perl5db.t | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/lib/perl5db.t b/lib/perl5db.t index 95d2030..9ef7aaa 100644 --- a/lib/perl5db.t +++ b/lib/perl5db.t @@ -1041,13 +1041,13 @@ sub _calc_trace_wrapper DebugWrap->new({ cmds => [ - 'n', 'print "<$x>"', - 'n', 'print "<$x>"', + 'n', 'print "<$x>\n"', + 'n', 'print "<$x>\n"', 'q', ], prog => '../lib/perl5db/t/lsub-n', })->output_like( - qr/<1><11>/, + qr/<1>\n<11>\n/, 'n steps over lvalue subs', ); -- 2.7.4