SIGCONT: don't terminate process

Change-Id: Ib959a9e5341fda37bd055724ecb9319a469b7420
Refs: #1410
This commit is contained in:
Tomoki Shirasawa
2019-11-14 11:35:01 +09:00
committed by Masamichi Takagi
parent adb6cce3ce
commit 4b252a990f
11 changed files with 1939 additions and 5 deletions

View File

@ -0,0 +1,31 @@
#!/bin/sh
uname -m
USELTP=1
USEOSTEST=0
BOOTPARAM="-c 1 -m 1G@0 -O"
. ../../common.sh
################################################################################
export MCEXEC
sh ./C1410T01run.sh
mcstop
unset BOOTPARAM
. $HOME/.mck_test_config
mcreboot
$MCEXEC ./C1420T01
for i in kill01:02 kill02:03 kill06:04 kill07:05 kill08:06 kill09:07 \
signal03:08 signal04:09 signal05:10; do
tp=`echo $i|sed 's/:.*//'`
id=`echo $i|sed 's/.*://'`
$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 "*** C1410T$id: $tp PASS ($ok)"
else
echo "*** C1410T$id: $tp FAIL (ok=$ok ng=%ng)"
fi
done