add testcases for #732 #1065 #1102

This commit is contained in:
Ken Sato
2018-06-07 10:11:23 +09:00
parent 139123dc12
commit 9bb48186e6
35 changed files with 1653 additions and 0 deletions

23
test/issues/1065/CT_006.sh Executable file
View File

@@ -0,0 +1,23 @@
#!/bin/sh
TESTNAME=CT_006
. ./config
fail=0
echo "*** ${TESTNAME} start *******************"
${MCEXEC} cat /proc/self/maps
if [ $? = 0 ]; then
echo "[OK] shell script is running normaly"
else
fail=1
fi
if [ X$fail = X0 ]; then
echo "*** ${TESTNAME} PASSED"
else
echo "*** ${TESTNAME} FAILED"
fi
echo ""