The following test set: execve: fix memory leak add: NULL check for master_channel at IKC interrupt_handler. Fix the check routine for elf sections (Fujitsu: POSTK_TEMP_FIX_77) Change-Id: I16c2a341c48f6df10a4839be08b93ea16bda8fbe Refs: #727 Refs: #873 Refs: #1011
34 lines
488 B
Bash
Executable File
34 lines
488 B
Bash
Executable File
#!/bin/sh
|
|
## run_issue727.sh COPYRIGHT FUJITSU LIMITED 2018 ##
|
|
|
|
USELTP=0
|
|
USEOSTEST=0
|
|
|
|
. ../../common.sh
|
|
|
|
result=-1
|
|
|
|
########################
|
|
# Issue727 test(patch) #
|
|
########################
|
|
|
|
make
|
|
|
|
${MCEXEC} ./exec
|
|
if [ $? != 0 ]; then
|
|
output=`${IHKOSCTL} 0 get status`
|
|
echo "${output}" | grep -q "PANIC"
|
|
if [ $? == 1 ]; then
|
|
echo "Issue727_0002: OK"
|
|
result=0
|
|
else
|
|
echo "McKernel PANIC detected."
|
|
fi
|
|
fi
|
|
|
|
if [ ${result} != 0 ]; then
|
|
echo "Issue727_0002: NG"
|
|
fi
|
|
|
|
exit ${result}
|