From 81990cb63316391a226e92ecda9e09dbe3bc8e1e Mon Sep 17 00:00:00 2001 From: Andrey Konovalov Date: Mon, 19 Jun 2017 15:31:06 +0200 Subject: repro: small log fix --- pkg/repro/repro.go | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) (limited to 'pkg/repro') diff --git a/pkg/repro/repro.go b/pkg/repro/repro.go index 167b03c09..111ae42ed 100644 --- a/pkg/repro/repro.go +++ b/pkg/repro/repro.go @@ -283,7 +283,7 @@ func (ctx *context) reproMinimizeProg(res *Result) (*Result, error) { } func (ctx *context) reproExtractC(res *Result) (*Result, error) { - Logf(2, "reproducing crash '%v': testing C reproducer", ctx.crashDesc) + Logf(2, "reproducing crash '%v': extracting C reproducer", ctx.crashDesc) // Try triggering crash with a C reproducer. crashed, err := ctx.testCProg(res.Prog, res.Duration, res.Opts) @@ -471,7 +471,6 @@ func (ctx *context) testBin(bin string, duration time.Duration) (crashed bool, e if err != nil { return false, fmt.Errorf("failed to copy to VM: %v", err) } - Logf(2, "reproducing crash '%v': testing compiled C program", ctx.crashDesc) return ctx.testImpl(inst.Instance, bin, duration) } -- cgit mrf-deployment