aboutsummaryrefslogtreecommitdiffstats
path: root/pkg
diff options
context:
space:
mode:
authorAndrey Konovalov <andreyknvl@google.com>2017-06-19 15:31:06 +0200
committerAndrey Konovalov <andreyknvl@google.com>2017-06-19 15:31:06 +0200
commit81990cb63316391a226e92ecda9e09dbe3bc8e1e (patch)
tree573c46a0c6d4ce21f88f3c67273c20699567f2c8 /pkg
parenta1e85a568848ec0e43b10b5d0658d130b175801d (diff)
repro: small log fix
Diffstat (limited to 'pkg')
-rw-r--r--pkg/repro/repro.go3
1 files changed, 1 insertions, 2 deletions
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)
}