Artifact ed6b353558f83522282cc3ad505ec5cdc5a80503:
- Executable file tests/fullrun/tests/test_mt_vars/test-path-file.sh — part of check-in [eb97146d39] at 2012-11-29 13:51:34 on branch trunk — Added trailing slash to a -e. It seems to behave differently on Sles10 from Ubuntu (user: abashmak, size: 484) [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