From d72a9b6f294d74ff9d5acb7f2091df8426e07948 Mon Sep 17 00:00:00 2001 From: Drew Bailey Date: Fri, 2 Apr 2021 11:15:22 -0400 Subject: [PATCH] remove flakey exec test that tests non-deterministic docker behavior (#10291) --- plugins/drivers/testutils/exec_testing.go | 9 --------- 1 file changed, 9 deletions(-) diff --git a/plugins/drivers/testutils/exec_testing.go b/plugins/drivers/testutils/exec_testing.go index 1aa484b1d..8d824a16d 100644 --- a/plugins/drivers/testutils/exec_testing.go +++ b/plugins/drivers/testutils/exec_testing.go @@ -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",