Comment 17 for bug 1999731

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

For more information, test V0.15.00 to V0.15.04 for 300 times each[1], I can reproduce on V0.15.00 and V0.15.01 only.

console output are attached.
--
[1]
#!/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 300`; do
  ./stress-ng/stress-ng --lockofd 0 -t 240
  echo == $? ==
 done
done

$ cat gittag.txt
V0.15.00
V0.15.01
V0.15.02
V0.15.03
V0.15.04