citrun

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

commit c006a54d9072af0fe4bf3efcfb75aa4911f94486
parent 3abac05f02aef715c084b80c0244e23ef05adfd3
Author: Kyle Milz <kyle@windows.krwm.net>
Date:   Mon,  2 Jan 2017 08:44:42 -0800

t: fix up inst_if

Diffstat:
Mt/inst_if.t | 6+++---
1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/t/inst_if.t b/t/inst_if.t @@ -40,7 +40,7 @@ int main(int argc, char *argv[]) {++_citrun.data[0]; EOF my $check_good = <<EOF; ->> citrun_inst v0.0 () +>> citrun_inst CITRUN_SHARE = '' Found source file '' Modified command line is '' @@ -65,12 +65,12 @@ $inst->read(\$inst_out, 'if.c'); # Sanitize paths from stdout. my $check_out = $inst->stdout; +$check_out =~ s/^.* citrun_inst.*\n/>> citrun_inst\n/gm; $check_out =~ s/^.*Milliseconds spent.*\n//gm; $check_out =~ s/'.*'/''/gm; -$check_out =~ s/\(.*\)/\(\)/gm; $check_out =~ s/^[0-9]+: //gm; eq_or_diff( $inst_out, $inst_good, 'is instrumented file identical', { context => 3 } ); -eq_or_diff $check_good, $check_out, 'is citrun_inst output identical'; +eq_or_diff $check_out, $check_good, 'is citrun_inst output identical', { context => 3 }; is( $inst->stderr, '', 'is citrun_inst stderr silent' ); is( $? >> 8, 0, 'is citrun_inst exit code 0' );