#!/bin/bash . run_profile.txt . $base_dir/plans/commands/common.fns # Check needed vars from run_profile.txt [ ! -d "$run_dir" ] && echo "ERROR: $run_dir does not exist" && exit -10 SUT=`hostname -s` log_dir="$run_dir/test_output" mkdir -p $log_dir echo "Running gjc-crashme workload on SUT: $SUT" # no filesystem mounting needed other than the build dir. cmd="./crashme +2000 666 1000 0:10:00 1" echo "using: $cmd" run_test "gjc-crashme" "$cmd" "$log_dir" "gjc-crashme.log" # $all_pkgs_dir/stress/stress-summary.sh exit 0