mirror of
https://github.com/moby/moby.git
synced 2022-11-09 12:21:53 -05:00
Merge pull request #38567 from thaJeztah/use_the_skip
TestCgroupDriverSystemdMemoryLimit: use skip.If()
This commit is contained in:
commit
b5be9f63eb
1 changed files with 1 additions and 4 deletions
|
@ -29,12 +29,9 @@ func hasSystemd() bool {
|
||||||
// https://github.com/moby/moby/issues/35123
|
// https://github.com/moby/moby/issues/35123
|
||||||
func TestCgroupDriverSystemdMemoryLimit(t *testing.T) {
|
func TestCgroupDriverSystemdMemoryLimit(t *testing.T) {
|
||||||
skip.If(t, testEnv.DaemonInfo.OSType == "windows")
|
skip.If(t, testEnv.DaemonInfo.OSType == "windows")
|
||||||
|
skip.If(t, !hasSystemd())
|
||||||
t.Parallel()
|
t.Parallel()
|
||||||
|
|
||||||
if !hasSystemd() {
|
|
||||||
t.Skip("systemd not available")
|
|
||||||
}
|
|
||||||
|
|
||||||
d := daemon.New(t)
|
d := daemon.New(t)
|
||||||
c := d.NewClientT(t)
|
c := d.NewClientT(t)
|
||||||
|
|
||||||
|
|
Loading…
Add table
Reference in a new issue