We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0ced5ce commit 8aaa6d5Copy full SHA for 8aaa6d5
agent/agent_test.go
@@ -2406,6 +2406,10 @@ func TestAgent_ManageProcessPriority(t *testing.T) {
2406
t.Run("OK", func(t *testing.T) {
2407
t.Parallel()
2408
2409
+ if runtime.GOOS != "linux" {
2410
+ t.Skip("Skipping non-linux environment")
2411
+ }
2412
+
2413
var (
2414
expectedProcs = map[int32]agentproc.Process{}
2415
fs = afero.NewMemMapFs()
@@ -2469,6 +2473,10 @@ func TestAgent_ManageProcessPriority(t *testing.T) {
2469
2473
t.Run("IgnoreCustomNice", func(t *testing.T) {
2470
2474
2471
2475
2476
2477
2478
2479
2472
2480
2481
2482
0 commit comments