#!/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 stress workload on SUT: $SUT" # no filesystem mounting needed other than the build dir. cwd=`/bin/pwd` echo "cwd: $cwd" cpus=`cpus_online.sh` ram_mb=`memsize.sh` ram_testsize=$((ram_mb / 2)) cmd="./src/stress --cpu $cpus --io $cpus --vm 1 --vm-bytes ${ram_testsize}M --hdd 1 --timeout 300s" # --verbose echo "using: $cmd" run_test "stress" "/usr/bin/time $cmd" "$log_dir" "stress.log" # $all_pkgs_dir/stress/stress-summary.sh exit 0