Ignore:
Timestamp:
Nov 14, 2012, 12:59:34 PM (12 years ago)
Author:
Silvan Scherrer
Message:

Samba Server: update vendor to 3.6.0

File:
1 edited

Legend:

Unmodified
Added
Removed
  • TabularUnified vendor/current/testprogs/blackbox/subunit.sh

    r414 r740  
    3030}
    3131
     32# This is just a hack as we have some broken scripts
     33# which use "exit $failed", without initializing failed.
     34failed=0
    3235
    3336subunit_fail_test () {
     
    8184        return $status
    8285}
     86
     87testok () {
     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
     97if [ -d source4 ]; then
     98    SRCDIR="."
     99else
     100    SRCDIR=".."
     101fi
     102export SRCDIR
Note: See TracChangeset for help on using the changeset viewer.