integration/TestContainerShmNoLeak: use --iptables=false
As mentioned in commit9e31938
, test cases that use t.Parallel() and start a docker daemon might step on each other toes as they try to configure iptables during startup, resulting in flaky tests. To avoid this, --iptables=false should be used while starting daemon. Fixes:eaa5192856
("Make container resource mounts unbindable") Signed-off-by: Kir Kolyshkin <kolyshkin@gmail.com>
This commit is contained in:
parent
241c904e6f
commit
c125e10a04
1 changed files with 1 additions and 1 deletions
|
@ -30,7 +30,7 @@ func TestContainerShmNoLeak(t *testing.T) {
|
|||
if err != nil {
|
||||
t.Fatal(err)
|
||||
}
|
||||
d.StartWithBusybox(t)
|
||||
d.StartWithBusybox(t, "--iptables=false")
|
||||
defer d.Stop(t)
|
||||
|
||||
ctx := context.Background()
|
||||
|
|
Loading…
Add table
Reference in a new issue