citrun

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

commit a377331d10e8e2abd59b276c07a29589abe2eba6
parent d44340316ab167a310e07beb8fb5d368ada4d5dd
Author: kyle <kyle@getaddrinfo.net>
Date:   Thu, 10 Mar 2016 22:46:09 -0700

t/multiple_sources: shuffle whitespace

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

diff --git a/t/multiple_sources.t b/t/multiple_sources.t @@ -4,7 +4,7 @@ use SCV::Viewer; use Test::More tests => 1; use Test::Differences; -my $project = SCV::Viewer->new(); +my $viewer = SCV::Viewer->new(); my $project = SCV::Project->new(); unified_diff; @@ -42,7 +42,7 @@ EOF ); $project->compile(); - $project->run(); + my ($ret, $err) = $project->wait(); is($ret, 0, "instrumented program check return code");