Artifact e8043acbce9f617232e2a487020a1f78e1c81611:
- Executable file tests/fullrun/tests/priority_3/main.sh — part of check-in [6c6195593c] at 2012-10-07 22:05:23 on branch test-specific-db — Updated chicken install script. Added test for -test-paths or -test-files (user: matt, size: 479) [annotate] [blame] [check-ins using] [more...]
#!/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 2 $MT_MEGATEST -step step$i :state end :status 0 done # get a previous test export EZFAILPATH=`$MT_MEGATEST -test-files envfile.txt -target $MT_TARGET :runname $MT_RUNNAME -testpatt ez_fail` if [[ -e $EZFAILPATH ]];then echo All good! else echo NOT good! exit 1 fi exit 0