-
Notifications
You must be signed in to change notification settings - Fork 39
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add Verify function to check if Ulimit max value is too big
When parsing the ulimit, we should check if the ulimit max value is greater then the processes max value. If yes then we should return an error. Signed-off-by: Daniel J Walsh <[email protected]>
- Loading branch information
Showing
2 changed files
with
25 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
// +build linux | ||
|
||
package units | ||
|
||
import ( | ||
"testing" | ||
) | ||
|
||
func TestParseUlimitTooBig(t *testing.T) { | ||
u, err := ParseUlimit("nofile=512:1000024") | ||
if err != nil { | ||
t.Fatalf("expected valid value got %q", err) | ||
} | ||
if err := u.Verify(); err == nil { | ||
t.Fatalf("expected invalid hard limit") | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
// +build !linux | ||
|
||
package units | ||
|
||
// Verify that ulimit values work with current kernel | ||
func (u *Ulimit) Verify() error { | ||
return nil | ||
} |