summaryrefslogtreecommitdiff
path: root/pkg/cgroups/cgroups_test.go
blob: 22d5efb7623960a60cde9a57843233d89903ecb2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
package cgroups

import (
	"testing"

	"github.com/containers/podman/v3/pkg/rootless"
	spec "github.com/opencontainers/runtime-spec/specs-go"
)

func TestCreated(t *testing.T) {
	// tests only works in rootless mode
	if rootless.IsRootless() {
		return
	}

	var resources spec.LinuxResources
	cgr, err := New("machine.slice", &resources)
	if err != nil {
		t.Error(err)
	}
	if err := cgr.Delete(); err != nil {
		t.Error(err)
	}

	cgr, err = NewSystemd("machine.slice")
	if err != nil {
		t.Error(err)
	}
	if err := cgr.Delete(); err != nil {
		t.Error(err)
	}
}