Patching strace to add a "--trace-path" parameter to the two tests'
definitions as in the patch below seems to fix this issue on both
AArch64 and x86-64, and is less drastic than disabling the tests
altogether.

The changes limit strace's output during testing to only calls affecting
files in the test directory itself, effectively filtering out the
'readlink("/proc/self/exe")' call from glibc that is throwing the tests
currently.  You can see a number of other places in gen_tests.in where
this is done, presumably for similar reasons.

Does this seem reasonable?

-- 
Simon South
si...@simonsouth.net


diff --git a/tests/gen_tests.in b/tests/gen_tests.in
index 8b4e2e9..cc3ca63 100644
--- a/tests/gen_tests.in
+++ b/tests/gen_tests.in
@@ -623,8 +623,8 @@ quotactl-xfs-v      -v -e trace=quotactl
 read-write     -a15 -eread=0,5 -ewrite=1,4 -e trace=read,write -P 
read-write-tmpfile -P /dev/zero -P /dev/null
 readahead      -a1
 readdir        -a16
-readlink       -xx
-readlinkat     -xx
+readlink       -xx --trace-path=test.readlink.link
+readlinkat     -xx --trace-path=test.readlinkat.link
 reboot         -s 256
 recv-MSG_TRUNC -a26 -e trace=recv
 recvfrom       -a35



Reply via email to