diff options
| author | Dmitry Vyukov <dvyukov@google.com> | 2019-01-24 18:38:56 +0100 |
|---|---|---|
| committer | Dmitry Vyukov <dvyukov@google.com> | 2019-01-24 18:56:19 +0100 |
| commit | fea4b504d8deaa5448203aae13bdb6ec3e6d33d9 (patch) | |
| tree | ee8d1a67bd570297bd392eebe4a205260b2829c7 /vm/vmimpl | |
| parent | 725ffbccf995a1264766a1e0666a05fcca323959 (diff) | |
vm/vmimpl: produce better error in WaitForSSH
Currently we squash VerboseError which leads to too lengthy build error titles.
Handle verbose error more carefully.
Diffstat (limited to 'vm/vmimpl')
| -rw-r--r-- | vm/vmimpl/util.go | 2 | ||||
| -rw-r--r-- | vm/vmimpl/vmimpl.go | 10 |
2 files changed, 11 insertions, 1 deletions
diff --git a/vm/vmimpl/util.go b/vm/vmimpl/util.go index 08034450f..616ccb3ac 100644 --- a/vm/vmimpl/util.go +++ b/vm/vmimpl/util.go @@ -42,7 +42,7 @@ func WaitForSSH(debug bool, timeout time.Duration, addr, sshKey, sshUser, OS str return nil } if time.Since(startTime) > timeout { - return fmt.Errorf("can't ssh into the instance: %v", err) + return &osutil.VerboseError{"can't ssh into the instance", []byte(err.Error())} } } } diff --git a/vm/vmimpl/vmimpl.go b/vm/vmimpl/vmimpl.go index e5efe19c2..f83d39d57 100644 --- a/vm/vmimpl/vmimpl.go +++ b/vm/vmimpl/vmimpl.go @@ -17,6 +17,7 @@ import ( "time" "github.com/google/syzkaller/pkg/log" + "github.com/google/syzkaller/pkg/osutil" ) // Pool represents a set of test machines (VMs, physical devices, etc) of particular type. @@ -76,6 +77,15 @@ type BootError struct { Output []byte } +func MakeBootError(err error, output []byte) error { + switch err1 := err.(type) { + case *osutil.VerboseError: + return BootError{err1.Title, append(err1.Output, output...)} + default: + return BootError{err.Error(), output} + } +} + func (err BootError) Error() string { return fmt.Sprintf("%v\n%s", err.Title, err.Output) } |
