Comment 16 for bug 1999731

Revision history for this message
Ike Panhc (ikepanhc) wrote :

Thanks Colin,

For your information, I ran a loop test[1] on each of stress-ng tags since V0.12.00, with 100 times lockofd run and see the return value. This issue starts to be seen since V0.12.09 (or maybe early because the reprudce chance is very low). Full console log is attached for your information.

--
#!/bin/bash

for i in `cat gittag.txt`; do
 echo ==== $i ====
 cd /home/ubuntu/stress-ng
 make clean
 git reset --hard
 git checkout $i
 make clean
 make
 cd /home/ubuntu
 for j in `seq 1 100`; do
  ./stress-ng/stress-ng --lockofd 0 -t 240
  echo == $? ==
 done
done