Megatest

Check-in [eb97146d39]
Login
Overview
Comment:Added trailing slash to a -e. It seems to behave differently on Sles10 from Ubuntu
Downloads: Tarball | ZIP archive | SQL archive
Timelines: family | ancestors | descendants | both | trunk
Files: files | file ages | folders
SHA1: eb97146d39f1b8fc1e912c9e00da5aeb27e6c3db
User & Date: abashmak on 2012-11-29 13:51:34
Other Links: manifest | tags
Context
2012-12-03
10:31
Merging fork check-in: 9a0b5401b4 user: mrwellan tags: trunk
2012-11-29
13:51
Added trailing slash to a -e. It seems to behave differently on Sles10 from Ubuntu check-in: eb97146d39 user: abashmak tags: trunk
2012-11-26
10:24
Bumped version check-in: 06080e4779 user: mrwellan tags: trunk, v1.5202
Changes

Modified tests/fullrun/tests/test_mt_vars/test-path-file.sh from [bda1e004e9] to [ed6b353558].

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#!/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%`








|







1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#!/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%`