Megatest

main.sh at [5123a2dfc5]
Login

File tests/fullrun/tests/priority_2/main.sh artifact 8c8c341150 part of check-in 5123a2dfc5


#!/bin/bash

# a bunch of steps in 2 second increments
for i in 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17;do
  $MT_MEGATEST -step step$i :state start :status running -setlog results$i.html
  sleep 5
  $MT_MEGATEST -step step$i :state end :status 0
done

exit 0