Comment 7 for bug 1865965

Revision history for this message
Po-Hsu Lin (cypressyew) wrote :

I tried to run the test staggeringly, all the tests before kill11 followed by kill11 test, to check if it's any test that's causing this issue:
while read line;
do
   echo $line > tmp
   echo "kill11 kill11" >> tmp
   sudo /opt/ltp/runltp -f /home/ubuntu/tmp/tmp
   if [ $? -ne 0 ]; then
       break
   fi
done < ~/syscalls

The ~/syscalls file here is a copy of /opt/ltp/runtests/syscalls, with content after kill11 deleted.

However, I can't reproduce this failure.

I also tried to run those failed test cases on Xenial, fallocate06 fanotify06 fanotify10 kill11, but the kill11 still passed in this case.

I can only reproduce this on Xenial by running the whole syscalls suite.