source: branches/samba-3.5.x/source4/selftest/tests_win2k3_dc.sh

Last change on this file was 414, checked in by Herwig Bauernfeind, 15 years ago

Samba 3.5.0: Initial import

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