From 8ea99d58ffd708aa7a26be58d89cb817d8eceec6 Mon Sep 17 00:00:00 2001 From: Ian Lewis Date: Thu, 11 Jun 2020 19:29:34 -0700 Subject: Set the HOME environment variable for sub-containers. Fixes #701 PiperOrigin-RevId: 316025635 --- pkg/test/criutil/criutil.go | 11 +++++++++++ 1 file changed, 11 insertions(+) (limited to 'pkg/test/criutil') diff --git a/pkg/test/criutil/criutil.go b/pkg/test/criutil/criutil.go index bebebb48e..8fed29ff5 100644 --- a/pkg/test/criutil/criutil.go +++ b/pkg/test/criutil/criutil.go @@ -113,6 +113,17 @@ func (cc *Crictl) Exec(contID string, args ...string) (string, error) { return output, nil } +// Logs retrieves the container logs. It corresponds to `crictl logs`. +func (cc *Crictl) Logs(contID string, args ...string) (string, error) { + a := []string{"logs", contID} + a = append(a, args...) + output, err := cc.run(a...) + if err != nil { + return "", fmt.Errorf("logs failed: %v", err) + } + return output, nil +} + // Rm removes a container. It corresponds to `crictl rm`. func (cc *Crictl) Rm(contID string) error { _, err := cc.run("rm", contID) -- cgit v1.2.3