From f20dfbdd952bddbae6fd0f1df271cd0550c255b3 Mon Sep 17 00:00:00 2001 From: Andrew Vagin Date: Fri, 4 Sep 2015 16:10:24 +0300 Subject: [PATCH] zdtm: skip linux-vdso64.so when a new root is contructed Signed-off-by: Andrey Vagin Acked-by: Laurent Dufour Signed-off-by: Pavel Emelyanov --- test/zdtm.sh | 1 + 1 file changed, 1 insertion(+) diff --git a/test/zdtm.sh b/test/zdtm.sh index feece7c05..b21ccdd17 100755 --- a/test/zdtm.sh +++ b/test/zdtm.sh @@ -473,6 +473,7 @@ construct_root() local libs=$(ldd $test_path $ps_path | awk ' !/^[ \t]/ { next } /linux-vdso\.so/ { next } + /linux-vdso64\.so/ { next } /linux-gate\.so/ { next } /not a dynamic executable$/ { next } $2 ~ /^=>$/ { print $3; next }