sigsuspend: Make sure receive correct sigevent from do_kill

Change-Id: Ife9cf36a81f353e0575f6802f1e56f7dd4cb0425
Fujitsu: POSTK_DEBUG_TEMP_FIX_33
Refs: #1350
This commit is contained in:
Ken Sato
2019-08-23 15:24:35 +09:00
committed by Masamichi Takagi
parent 18412616e1
commit bc06d68d84
7 changed files with 228 additions and 10 deletions

38
test/issues/1350/C1350.sh Executable file
View File

@ -0,0 +1,38 @@
#/bin/sh
USELTP=1
USEOSTEST=0
. ../../common.sh
issue=1350
tid=01
tname=`printf "C${issue}T%02d" ${tid}`
echo "*** ${tname} start *******************************"
${MCEXEC} ./C1350
if [ $? -eq 0 ]; then
echo "*** ${tname} PASSED ******************************"
else
echo "*** ${tname} FAILED ******************************"
fi
let tid++
echo ""
for tp in rt_sigsuspend01 sigsuspend01 pause01 pause02 pause03
do
tname=`printf "C${issue}T%02d" ${tid}`
echo "*** ${tname} start *******************************"
sudo $MCEXEC $LTPBIN/$tp 2>&1 | tee $tp.txt
ok=`grep TPASS $tp.txt | wc -l`
ng=`grep TFAIL $tp.txt | wc -l`
if [ $ng = 0 ]; then
echo "*** ${tname} PASSED ($ok)"
else
echo "*** ${tname} FAILED (ok=$ok ng=%ng)"
fi
let tid++
echo ""
done