mirror of
https://github.com/moby/moby.git
synced 2022-11-09 12:21:53 -05:00
[integration-cli] fix s390x flaky test
s390x node-1 has kernel 4.6.0, kernel.CompareKernelVersion() returns 0 if the kernels are equal, so include that. Full logic for CompareKernelVersion() is a > b ret 1, a == b ret 0, a < b ret -1 Signed-off-by: Christopher Jones <tophj@linux.vnet.ibm.com>
This commit is contained in:
parent
595b929c57
commit
aa5ea652c8
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)
|
||||
// the given version.
|
||||
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) {
|
||||
|
|
Loading…
Add table
Reference in a new issue