Commit fd81748a authored by Andrey Vagin's avatar Andrey Vagin Committed by Pavel Emelyanov

zdtm: increase the upstream kernel version

The kernel must be 3.11 or greater due to
29000cae ptrace: add ability to get/set signal-blocked mask (v2)

The patches for dumping tun devices are not committed in the upstream
kernel yet, so ns/static/tun is excluded.
Signed-off-by: 's avatarAndrey Vagin <avagin@openvz.org>
Signed-off-by: 's avatarPavel Emelyanov <xemul@parallels.com>
parent 7097b535
...@@ -122,8 +122,7 @@ ns/static/tun ...@@ -122,8 +122,7 @@ ns/static/tun
" "
TEST_CR_KERNEL=" TEST_CR_KERNEL="
static/sigpending ns/static/tun
static/sk-netlink
" "
TEST_SUID_LIST=" TEST_SUID_LIST="
...@@ -194,9 +193,9 @@ EOF ...@@ -194,9 +193,9 @@ EOF
ver_arr=(`echo ${ver_str//./ }`) ver_arr=(`echo ${ver_str//./ }`)
[ "${ver_arr[0]}" -gt 3 ] && return 0 [ "${ver_arr[0]}" -gt 3 ] && return 0
[[ "${ver_arr[0]}" -eq 3 && "${ver_arr[1]}" -ge 8 ]] && return 0 [[ "${ver_arr[0]}" -eq 3 && "${ver_arr[1]}" -ge 11 ]] && return 0
echo "A version of kernel should be greater or equal to 3.8" >&2 echo "A version of kernel should be greater or equal to 3.11" >&2
return 1; return 1;
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment