handle execveat systemcall on McKernel

Refs: #1366
Change-Id: I921e04a0df8d0d798fc94f675e5112dd2fec190a
This commit is contained in:
Ken Sato
2019-11-14 10:56:28 +09:00
parent d052acab1d
commit 7fc4272b89
10 changed files with 356 additions and 10 deletions

29
test/issues/1366/C1366.sh Executable file
View File

@ -0,0 +1,29 @@
#/bin/sh
USELTP=1
USEOSTEST=0
. ../../common.sh
issue=1366
tid=01
cp ${LTPBIN}/execve_* ./
cp ${LTPBIN}/execveat_* ./
for tp in execveat01 execveat02 execveat03 execve01 execve02 execve03 execve05
do
tname=`printf "C${issue}T%02d" ${tid}`
echo "*** ${tname} start *******************************"
sudo PATH=${LTPBIN}:${PATH} $MCEXEC $LTPBIN/$tp 2>&1 | tee $tp.txt
ok=`grep PASS $tp.txt | wc -l`
ng=`grep FAIL $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