citrun

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

commit 3831e94ecfb038d1a059406465138c2d0f67fca0
parent 5caaa250819b9de928ac0c3139d85a6e30b64bc8
Author: Kyle Milz <kyle@getaddrinfo.net>
Date:   Sat, 16 Apr 2016 17:55:50 -0600

e2e: range still not big enough

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

diff --git a/e2e/vim.t b/e2e/vim.t @@ -129,8 +129,8 @@ while ( my ($x, $y) = $it->() ) { is ( $y->{lines}, $x->[1], "vim $x->[0]: total lines check" ); # Check instrumented sites as a range - cmp_ok ( $y->{inst_sites}, ">", $x->[2] - 3, "vim $x->[0]: instrumented sites check lower" ); - cmp_ok ( $y->{inst_sites}, "<", $x->[2] + 3, "vim $x->[0]: instrumented sites check upper" ); + cmp_ok ( $y->{inst_sites}, ">", $x->[2] - 5, "vim $x->[0]: instrumented sites check lower" ); + cmp_ok ( $y->{inst_sites}, "<", $x->[2] + 5, "vim $x->[0]: instrumented sites check upper" ); } print STDERR ">>> START\n";