browbeat/pbench/browbeat-run-rally.sh
Joe Talerico 47025d6a51 Move Pbench Rally script
No need to keep this in the main browbeat dir

Change-Id: Id2671c19ef68c02ac25ee1820d9320fb53044a09
2016-01-29 16:11:04 -05:00

12 lines
286 B
Bash
Executable File

#!/bin/bash
task_file=$1
test_name=$2
test_args=$3
echo "task_file: ${task_file}"
echo "test_name: ${test_name}"
echo "test_args: ${test_args}"
echo "Before Rally task start."
rally task start --task ${task_file} ${test_args} 2>&1 | tee ${test_name}.log
echo "After Rally task start."