~zulcss/samba/server-dailies-3.4

« back to all changes in this revision

Viewing changes to source4/selftest/tests_win2k3_dc.sh

  • Committer: Chuck Short
  • Date: 2010-09-28 20:38:39 UTC
  • Revision ID: zulcss@ubuntu.com-20100928203839-pgjulytsi9ue63x1
Initial version

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
#!/bin/sh
 
2
 
 
3
if [ ! $WINTESTCONF ]; then
 
4
        echo "Environment variable WINTESTCONF has not been defined."
 
5
        echo "Windows tests will not run unconfigured."
 
6
        exit 1
 
7
fi
 
8
 
 
9
if [ ! -r $WINTESTCONF ]; then
 
10
        echo "$WINTESTCONF could not be read."
 
11
        exit 1
 
12
fi
 
13
 
 
14
. selftest/test_functions.sh
 
15
 
 
16
export SRCDIR=$SRCDIR
 
17
 
 
18
tests="RPC-DRSUAPI RPC-SPOOLSS ncacn_np ncacn_ip_tcp"
 
19
 
 
20
for name in $tests; do
 
21
        testit $name rpc $SRCDIR/selftest/win/wintest_2k3_dc.sh $name
 
22
done