You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
35 lines
569 B
35 lines
569 B
#!/bin/bash
|
|
|
|
function usage {
|
|
echo "$0 [cpu-log]"
|
|
exit 1
|
|
}
|
|
|
|
|
|
#basepath=$(cd `dirname $0`; pwd)
|
|
#cpu_log=$1
|
|
|
|
#if [ -z $cpu_log ]
|
|
#then
|
|
# usage
|
|
#fi
|
|
|
|
|
|
#node1_cpu_file=$cpu_log"_node1_cpu.log"
|
|
path="/home/hai/sledge-old/runtime/tests"
|
|
|
|
#test c3
|
|
server_log_file="edf_15.log"
|
|
$path/start.sh $server_log_file >/dev/null 2>&1 &
|
|
echo "sledge is running"
|
|
./hey_test_8c.sh 120 15
|
|
$path/kill_sledge.sh
|
|
|
|
#test c5
|
|
server_log_file="edf_22.log"
|
|
$path/start.sh $server_log_file >/dev/null 2>&1 &
|
|
echo "sledge is running"
|
|
./hey_test_8c.sh 120 22
|
|
$path/kill_sledge.sh
|
|
|