citrun

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

commit f45f0bf58a0342768af9610d669d3f1a76e5f014
parent 3064a9c131ff8e554b6b5b1094041aa6a14e2386
Author: Kyle Milz <kyle@getaddrinfo.net>
Date:   Sat, 19 Mar 2016 14:10:56 -0600

t/runtime: add >= for sparc which is pretty slow

Diffstat:
Mt/runtime_counters_increase.t | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/t/runtime_counters_increase.t b/t/runtime_counters_increase.t @@ -63,7 +63,7 @@ my @exec_lines2 = @{ $data->[0] }; for (8..12) { cmp_ok( $exec_lines1[$_], ">", 1, "line $_ executed nonzero times" ); # Make sure the second time we queried the execution counts they were higher - cmp_ok( $exec_lines2[$_], ">", $exec_lines1[$_], "line $_ after > before" ); + cmp_ok( $exec_lines2[$_], ">=", $exec_lines1[$_], "line $_ after > before" ); } $project->kill();