Artifact a550b15ff70a96ccb8cdc1650f46a1febd742d4c:
- Executable file tests/fullrun/tests/test_mt_vars/test-path-file.sh — part of check-in [65e65c0318] at 2012-12-12 21:25:16 on branch trunk — Fix for multiple return values from -test-paths (user: mrwellan, size: 489) [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 EZFAILPATH2=`$MT_MEGATEST -test-paths -target $MT_TARGET :runname $MT_RUNNAME -testpatt runfirst/a%` echo "Found |$EZFAILPATH2|" if [ -e $EZFAILPATH2 ];then echo All good! else echo NOT good! exit 1 fi exit 0