#!/bin/bash export TCID=ebizzy; export TST_TOTAL=3; export TST_COUNT=1 . run_profile.txt . $base_dir/plans/commands/common.fns export PATH=/usr/local/bin:$PATH tst_resm TINFO "BEGIN PACKAGE $TCID" # Check needed vars from run_profile.txt [ ! -d "$run_dir" ] && tst_resm TCONF "ERROR: $run_dir does not exist" && exit -10 SUT=`hostname -s` tst_resm TINFO "Running ebizzy on SUT: $SUT" log_dir="$run_dir/test_output" mkdir -p $log_dir # no filesystem mounting needed other than the build dir. cwd=`/bin/pwd` tst_resm TINFO "cwd: $cwd" run_test "ebizzy" "/usr/bin/time ./ebizzy -S 60 -R" "$log_dir" "ebizzy.log" tst_status $? TST_COUNT=2 run_test "ebizzy" "/usr/bin/time ./ebizzy -S 60 -R -m" "$log_dir" "ebizzy.log" tst_status $? -m TST_COUNT=3 run_test "ebizzy" "/usr/bin/time ./ebizzy -S 60 -R -M" "$log_dir" "ebizzy.log" tst_status $? -M # $all_pkgs_dir/ebizzy/ebizzy-summary.sh tst_resm TINFO fini exit 0