mirror of
https://github.com/moby/moby.git
synced 2022-11-09 12:21:53 -05:00
Merge pull request #35072 from tophj-ibm/fix-kernel-version-detection
[integration-cli] fix s390x flaky test
This commit is contained in:
commit
d65ab869e8
1 changed files with 1 additions and 1 deletions
|
@ -180,7 +180,7 @@ func GetKernelVersion() *kernel.VersionInfo {
|
||||||
// CheckKernelVersion checks if current kernel is newer than (or equal to)
|
// CheckKernelVersion checks if current kernel is newer than (or equal to)
|
||||||
// the given version.
|
// the given version.
|
||||||
func CheckKernelVersion(k, major, minor int) bool {
|
func CheckKernelVersion(k, major, minor int) bool {
|
||||||
return kernel.CompareKernelVersion(*GetKernelVersion(), kernel.VersionInfo{Kernel: k, Major: major, Minor: minor}) > 0
|
return kernel.CompareKernelVersion(*GetKernelVersion(), kernel.VersionInfo{Kernel: k, Major: major, Minor: minor}) >= 0
|
||||||
}
|
}
|
||||||
|
|
||||||
func (s *DockerSuite) TestUpdateSwapMemoryOnly(c *check.C) {
|
func (s *DockerSuite) TestUpdateSwapMemoryOnly(c *check.C) {
|
||||||
|
|
Loading…
Reference in a new issue