citrun

watch C/C++ source code execute
Log | Files | Refs | LICENSE

commit 11f21bdd79a0b042486896651396e34dfa56f09d
parent ca207e4b136d351cdbcfad342c6a3acf181b5763
Author: kyle <kyle@0x30.net>
Date:   Tue, 17 Jan 2017 21:55:36 -0700

t/inst_logeol: one less log line now

Diffstat:
Mt/inst_logeol.t | 4++--
1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/t/inst_logeol.t b/t/inst_logeol.t @@ -25,9 +25,9 @@ if ($^O eq 'MSWin32') { # Windows has extra lines because exec() is emulated by fork(). my $rn_count = () = $citrun_log =~ /\r\n/g; - is( $rn_count, 16, 'is \r\n count correct' ); + is( $rn_count, 15, 'is \r\n count correct' ); } else { my $n_count = () = $citrun_log =~ /\n/g; - is( $n_count, 15, 'is \n count correct' ); + is( $n_count, 14, 'is \n count correct' ); }