test: Refactor test programs

Change-Id: I77fec2f5f30f6fda3bda6f85ce00f1c2e7f7a9b3
This commit is contained in:
Ken Sato
2018-09-18 16:02:20 +09:00
parent c862b29d65
commit e803698618
93 changed files with 1127 additions and 2748 deletions

View File

@ -1,61 +1,21 @@
#!/bin/sh
BIN=
SBIN=
LTP=
USELTP=1
USEOSTEST=0
BOOTPARAM="-c 1-7,17-23,9-15,25-31 -m 10G@0,10G@1"
. ../../common.sh
if [ -f ../../../config.h ]; then
str=`grep "^#define BINDIR " ../../../config.h | head -1 | sed 's/^#define BINDIR /BINDIR=/'`
eval $str
fi
if [ "x$BINDIR" = x ];then
BINDIR="$BIN"
fi
if [ -f ../../../Makefile ]; then
str=`grep ^SBINDIR ../../../Makefile | head -1 | sed 's/ //g'`
eval $str
fi
if [ "x$SBINDIR" = x ];then
SBINDIR="$SBIN"
fi
if [ -f $HOME/ltp/testcases/bin/fork01 ]; then
LTPDIR=$HOME/ltp/testcases
fi
if [ "x$LTPDIR" = x ]; then
LTPDIR="$LTP"
fi
if ! lsmod | grep mcctrl > /dev/null 2>&1; then
if [ ! -x $SBINDIR/mcreboot.sh ]; then
echo no mcreboot found >&2
exit 1
fi
sudo $SBINDIR/mcreboot.sh $BOOTPARAM
fi
if [ ! -x $BINDIR/mcexec ]; then
echo no mcexec found >&2
exit 1
fi
sudo $BINDIR/mcexec ./g310a 2>&1 | tee g310a.txt
sudo $MCEXEC ./g310a 2>&1 | tee g310a.txt
if grep "fork: Permission denied" g310a.txt > /dev/null 2>&1 ; then
echo "*** C731T001: g310a OK"
else
echo "*** C731T001: g310a NG"
fi
if [ x$LTPDIR = x ]; then
echo no LTP found >&2
exit 1
fi
for i in 01:002 02:003 03:004 04:005 07:006 08:007; do
tp=`echo $i|sed 's/:.*//'`
id=`echo $i|sed 's/.*://'`
$BINDIR/mcexec $LTPDIR/bin/fork$tp 2>&1 | tee fork$tp.txt
$MCEXEC $LTPBIN/fork$tp 2>&1 | tee fork$tp.txt
ok=`grep TPASS fork$tp.txt | wc -l`
ng=`grep TFAIL fork$tp.txt | wc -l`
if [ $ng = 0 ]; then

View File

@ -25,10 +25,10 @@ C731T007 fork08 の実行確認
□ 実行手順
$ make test
実行できない場合は、C731.shの以下の行を適切に書き換えた後に実行。
BIN= mcexec が存在するパス
SBIN= mcreboot.sh が存在するパス
LTP= LTPが存在するパス
McKernelのインストール先や、OSTEST, LTPの配置場所は、
$HOME/.mck_test_config を参照している
.mck_test_config は、McKernelをビルドした際に生成されるmck_test_config.sample ファイルを
$HOMEにコピーし、適宜編集する
□ 実行結果
C731.txt 参照。