Overview
Comment: | Merging fork |
---|---|
Downloads: | Tarball | ZIP archive | SQL archive |
Timelines: | family | ancestors | descendants | both | trunk |
Files: | files | file ages | folders |
SHA1: |
9a0b5401b44b6d3628dd26ba5fc01ef2 |
User & Date: | mrwellan on 2012-12-03 10:31:25 |
Other Links: | manifest | tags |
Context
2012-12-03
| ||
17:21 | Added -list-targets, -list-disks and -list-db-targets check-in: 970f20a4ba user: mrwellan tags: trunk | |
10:31 | Merging fork check-in: 9a0b5401b4 user: mrwellan tags: trunk | |
10:27 | Partial implementation of new filtering. Changed launch logic on finding script to execute for test check-in: 4856f788ea 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 | |
Changes
Modified tests/fullrun/tests/test_mt_vars/test-path-file.sh from [bda1e004e9] to [ed6b353558].
1 2 3 4 5 6 7 8 | #!/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 | | | 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%` |
︙ | ︙ |