CC-2870: Create testing infrastructure for testing upgrades

-improvements the run.sh script.
	-System is now shutdown after completion
	-Logs to various files
This commit is contained in:
Martin Konecny 2011-11-09 17:31:59 -05:00
parent 1245a13259
commit 8a737d58f5
2 changed files with 8 additions and 4 deletions

View file

@ -15,7 +15,7 @@ for i in $(seq 0 $(($num1 -1)));
do
for j in $(seq 0 $(($num2 -1)));
do
echo fab -f fab_setup.py ${ubuntu_versions[$i]} ${airtime_versions[$j]} $target 2>&1 | tee $LOG
fab -f fab_setup.py ${ubuntu_versions[$i]} ${airtime_versions[$j]} $target 2>&1 | tee $LOG
echo fab -f fab_setup.py ${ubuntu_versions[$i]} ${airtime_versions[$j]} $target shutdown
fab -f fab_setup.py ${ubuntu_versions[$i]} ${airtime_versions[$j]} $target shutdown 2>&1 | tee "${ubuntu_versions[$i]}_${airtime_versions[$j]}_$target.log"
done
done