freeze: add freeze_thaw test

Change-Id: I31db80b89adca9ac354a96ad21073b269d8a0e24
This commit is contained in:
TOIDA,Suguru
2019-09-18 19:00:05 +09:00
committed by Masamichi Takagi
parent 83ade5cdcd
commit ec31d72483
70 changed files with 1054 additions and 0 deletions

18
test/freeze_thaw/run.sh Normal file
View File

@@ -0,0 +1,18 @@
#!/bin/env bash
# run.sh COPYRIGHT FUJITSU LIMITED 2019
script_dir="$(cd "$(dirname "${BASH_SOURCE:-${(%):-%N}}")"; pwd)"
. "$script_dir/../common.sh"
ln -sf "$BIN/mcexec"
ln -sf "$SBIN/ihkosctl"
cd "$script_dir/tp"
for tp in `find . -regex './[0-9][0-9][0-9]\.sh$'`
do
echo "@@@ $tp @@@"
sh "$tp"
if [ $? -eq 0 ]; then
echo "OK"
else
echo "NG"
fi
done