Changeset 740 for vendor/current/testprogs/blackbox/subunit.sh
- Timestamp:
- Nov 14, 2012, 12:59:34 PM (12 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
TabularUnified vendor/current/testprogs/blackbox/subunit.sh ¶
r414 r740 30 30 } 31 31 32 # This is just a hack as we have some broken scripts 33 # which use "exit $failed", without initializing failed. 34 failed=0 32 35 33 36 subunit_fail_test () { … … 81 84 return $status 82 85 } 86 87 testok () { 88 name=`basename $1` 89 shift 90 failed=$2 91 shift 92 93 exit $failed 94 } 95 96 # work out the top level source directory 97 if [ -d source4 ]; then 98 SRCDIR="." 99 else 100 SRCDIR=".." 101 fi 102 export SRCDIR
Note:
See TracChangeset
for help on using the changeset viewer.