Artifact bda1e004e98547f9bb37c7de02aaac44f73eebdc:
- Executable file tests/fullrun/tests/test_mt_vars/test-path-file.sh — part of check-in [c3f6a89ed1] at 2012-10-14 23:27:46 on branch trunk — Resized test patt box on dashboard, updated help for removal of -itempatt, temporary remove of -rollup, added rollup test, added -test-file and -test-path tests (user: matt, size: 483) [annotate] [blame] [check-ins using] [more...]
#!/bin/bash # get a previous test export EZFAILPATH=`$MT_MEGATEST -test-files envfile.txt -target $MT_TARGET :runname $MT_RUNNAME -testpatt runfirst/a%` echo Found $EZFAILPATH if [[ -e $EZFAILPATH ]];then echo All good! else echo NOT good! exit 1 fi export EZFAILPATH=`$MT_MEGATEST -test-paths -target $MT_TARGET :runname $MT_RUNNAME -testpatt runfirst/a%` echo Found $EZFAILPATH if [[ -e $EZFAILPATH ]];then echo All good! else echo NOT good! exit 1 fi exit 0