diff options
author | Jelmer Vernooij <jelmer@samba.org> | 2008-09-30 15:24:46 +0200 |
---|---|---|
committer | Jelmer Vernooij <jelmer@samba.org> | 2008-09-30 15:24:46 +0200 |
commit | 7f1c02cd7a8f4238041406acab061f34c587c69a (patch) | |
tree | 067c594898874325d44a2946359ccedd467cf32a /source4 | |
parent | ae385145347f8e7a10acd61a5217685c6c617661 (diff) | |
download | samba-7f1c02cd7a8f4238041406acab061f34c587c69a.tar.gz samba-7f1c02cd7a8f4238041406acab061f34c587c69a.tar.bz2 samba-7f1c02cd7a8f4238041406acab061f34c587c69a.zip |
Enable winreg Python tests - authentication works now.
Diffstat (limited to 'source4')
-rw-r--r-- | source4/samba4-skip | 1 | ||||
-rw-r--r-- | source4/scripting/python/samba/tests/dcerpc/rpcecho.py | 3 |
2 files changed, 2 insertions, 2 deletions
diff --git a/source4/samba4-skip b/source4/samba4-skip index 5fa40ee706..e3e2d2d525 100644 --- a/source4/samba4-skip +++ b/source4/samba4-skip @@ -59,4 +59,3 @@ samba4.ntvfs.cifs.raw. ^samba4.net.api.become.dc.*$ # Fails nss.test # Fails raw.offline # Samba 4 doesn't have much offline support yet -winreg* #Does not authenticate against the target server diff --git a/source4/scripting/python/samba/tests/dcerpc/rpcecho.py b/source4/scripting/python/samba/tests/dcerpc/rpcecho.py index 12638e2397..06790736b8 100644 --- a/source4/scripting/python/samba/tests/dcerpc/rpcecho.py +++ b/source4/scripting/python/samba/tests/dcerpc/rpcecho.py @@ -25,7 +25,8 @@ from samba.tests import RpcInterfaceTestCase class RpcEchoTests(RpcInterfaceTestCase): def setUp(self): - self.conn = echo.rpcecho("ncalrpc:", self.get_loadparm()) + self.conn = echo.rpcecho("ncalrpc:", self.get_loadparm(), + self.get_credentials()) def test_two_contexts(self): self.conn2 = echo.rpcecho("ncalrpc:", self.get_loadparm(), basis_connection=self.conn) |