47025d6a51
No need to keep this in the main browbeat dir Change-Id: Id2671c19ef68c02ac25ee1820d9320fb53044a09
12 lines
286 B
Bash
Executable File
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."
|