From 76a6ddc3a467546908e1c7af48e910f01365b54c Mon Sep 17 00:00:00 2001 From: Evgenii Stratonikov Date: Thu, 10 Dec 2020 13:35:50 +0300 Subject: [PATCH] vmcli/test: run shell after providing input In some cases, `Run()` can read from input before we have written anything to it. --- pkg/vm/cli/cli_test.go | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/pkg/vm/cli/cli_test.go b/pkg/vm/cli/cli_test.go index 87efc1656..d59bcedad 100644 --- a/pkg/vm/cli/cli_test.go +++ b/pkg/vm/cli/cli_test.go @@ -75,16 +75,16 @@ func newTestVMCLIWithLogo(t *testing.T, printLogo bool) *executor { Stdin: e.in, Stdout: e.out, }) - go func() { - require.NoError(t, e.cli.Run()) - close(e.ch) - }() return e } func (e *executor) runProg(t *testing.T, commands ...string) { cmd := strings.Join(commands, "\n") + "\n" e.in.WriteString(cmd + "\n") + go func() { + require.NoError(t, e.cli.Run()) + close(e.ch) + }() select { case <-e.ch: case <-time.After(time.Second):