Merge pull request #1088 from vishh/improve-e2e

Fix integration test runner.
This commit is contained in:
Vish Kannan 2016-02-01 15:23:30 -08:00
commit 5023475716

View File

@ -170,7 +170,6 @@ func PushAndRunTests(host, testDir string) error {
}
}
if err != nil {
err = fmt.Errorf("error on host %s: %v\n%+v", host, err, attributes)
// Copy logs from the host
args = common.GetGCComputeArgs("copy-files", fmt.Sprintf("%s:%s/log.txt", host, testDir), "./")
err = RunCommand("gcloud", args...)
@ -182,7 +181,8 @@ func PushAndRunTests(host, testDir string) error {
if err != nil {
return fmt.Errorf("error reading local log file: %v", err)
}
glog.Errorf("%v", logs)
glog.Errorf("%v", string(logs))
err = fmt.Errorf("error on host %s: %v\n%+v", host, err, attributes)
}
return err
}