remove flakey exec test that tests non-deterministic docker behavior (#10291)

This commit is contained in:
Drew Bailey
2021-04-02 11:15:22 -04:00
committed by GitHub
parent e3346307fd
commit d72a9b6f29

View File

@@ -70,15 +70,6 @@ var ExecTaskStreamingBasicCases = []struct {
Stdout: "hello from command\nhello from stdin\n",
ExitCode: 0,
},
{
Name: "notty: children processes",
Command: "(( sleep 3; echo from background ) & ); echo from main; exec sleep 1",
Tty: false,
// when not using tty; wait for all processes to exit matching behavior of `docker exec`
Stdout: "from main\nfrom background\n",
ExitCode: 0,
},
// TTY cases - difference is new lines add `\r` and child process waiting is different
{
Name: "tty: basic",