Skip to content

Commit

Permalink
remove flakey exec test that tests non-deterministic docker behavior (#…
Browse files Browse the repository at this point in the history
  • Loading branch information
drewbailey authored Apr 2, 2021
1 parent e334630 commit d72a9b6
Showing 1 changed file with 0 additions and 9 deletions.
9 changes: 0 additions & 9 deletions plugins/drivers/testutils/exec_testing.go
Original file line number Diff line number Diff line change
Expand Up @@ -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",
Expand Down

0 comments on commit d72a9b6

Please sign in to comment.