summaryrefslogtreecommitdiff
path: root/source4
diff options
context:
space:
mode:
authorStefan Metzmacher <metze@samba.org>2010-06-30 10:57:37 +0200
committerStefan Metzmacher <metze@samba.org>2010-06-30 10:59:57 +0200
commit19d93c6a1e810dbd634f35cf440412c1ff958448 (patch)
tree4f781a9c3e45ec1c7534b6fe45fc70dde6a81df6 /source4
parent45fc7284982f3d6d3f5757f2e7336c878c4a6519 (diff)
downloadsamba-19d93c6a1e810dbd634f35cf440412c1ff958448.tar.gz
samba-19d93c6a1e810dbd634f35cf440412c1ff958448.tar.bz2
samba-19d93c6a1e810dbd634f35cf440412c1ff958448.zip
s4:ldb/python: make it possible to run tests standalone
metze
Diffstat (limited to 'source4')
-rwxr-xr-xsource4/lib/ldb/tests/python/acl.py3
-rwxr-xr-xsource4/lib/ldb/tests/python/deletetest.py2
-rwxr-xr-xsource4/lib/ldb/tests/python/dsdb_schema_info.py3
-rwxr-xr-xsource4/lib/ldb/tests/python/ldap.py3
-rwxr-xr-xsource4/lib/ldb/tests/python/ldap_schema.py3
-rwxr-xr-xsource4/lib/ldb/tests/python/passwords.py3
-rwxr-xr-xsource4/lib/ldb/tests/python/sec_descriptor.py3
-rwxr-xr-xsource4/lib/ldb/tests/python/urgent_replication.py5
8 files changed, 22 insertions, 3 deletions
diff --git a/source4/lib/ldb/tests/python/acl.py b/source4/lib/ldb/tests/python/acl.py
index 514edf87a2..5bf3ff9b1b 100755
--- a/source4/lib/ldb/tests/python/acl.py
+++ b/source4/lib/ldb/tests/python/acl.py
@@ -8,6 +8,9 @@ import base64
import re
sys.path.append("bin/python")
+import samba
+samba.ensure_external_module("subunit", "subunit/python")
+samba.ensure_external_module("testtools", "testtools")
import samba.getopt as options
diff --git a/source4/lib/ldb/tests/python/deletetest.py b/source4/lib/ldb/tests/python/deletetest.py
index 44eb919e09..aa93104c04 100755
--- a/source4/lib/ldb/tests/python/deletetest.py
+++ b/source4/lib/ldb/tests/python/deletetest.py
@@ -7,7 +7,7 @@ import os
sys.path.append("bin/python")
import samba
-samba.ensure_external_module("subunit", "subunit")
+samba.ensure_external_module("subunit", "subunit/python")
samba.ensure_external_module("testtools", "testtools")
import samba.getopt as options
diff --git a/source4/lib/ldb/tests/python/dsdb_schema_info.py b/source4/lib/ldb/tests/python/dsdb_schema_info.py
index 7a3faba459..ff3c7f9b98 100755
--- a/source4/lib/ldb/tests/python/dsdb_schema_info.py
+++ b/source4/lib/ldb/tests/python/dsdb_schema_info.py
@@ -31,6 +31,9 @@ import random
import os
sys.path.append("bin/python")
+import samba
+samba.ensure_external_module("subunit", "subunit/python")
+samba.ensure_external_module("testtools", "testtools")
from samba.auth import system_session
from ldb import SCOPE_BASE, LdbError
diff --git a/source4/lib/ldb/tests/python/ldap.py b/source4/lib/ldb/tests/python/ldap.py
index 3a0a1c0a7f..de8e89b7f8 100755
--- a/source4/lib/ldb/tests/python/ldap.py
+++ b/source4/lib/ldb/tests/python/ldap.py
@@ -9,6 +9,9 @@ import base64
import os
sys.path.append("bin/python")
+import samba
+samba.ensure_external_module("subunit", "subunit/python")
+samba.ensure_external_module("testtools", "testtools")
import samba.getopt as options
diff --git a/source4/lib/ldb/tests/python/ldap_schema.py b/source4/lib/ldb/tests/python/ldap_schema.py
index 8d1f0d00f4..270e22adb1 100755
--- a/source4/lib/ldb/tests/python/ldap_schema.py
+++ b/source4/lib/ldb/tests/python/ldap_schema.py
@@ -9,6 +9,9 @@ import random
import os
sys.path.append("bin/python")
+import samba
+samba.ensure_external_module("subunit", "subunit/python")
+samba.ensure_external_module("testtools", "testtools")
import samba.getopt as options
diff --git a/source4/lib/ldb/tests/python/passwords.py b/source4/lib/ldb/tests/python/passwords.py
index dd5a1ca126..fd2ed1c105 100755
--- a/source4/lib/ldb/tests/python/passwords.py
+++ b/source4/lib/ldb/tests/python/passwords.py
@@ -16,6 +16,9 @@ import base64
import os
sys.path.append("bin/python")
+import samba
+samba.ensure_external_module("subunit", "subunit/python")
+samba.ensure_external_module("testtools", "testtools")
import samba.getopt as options
diff --git a/source4/lib/ldb/tests/python/sec_descriptor.py b/source4/lib/ldb/tests/python/sec_descriptor.py
index 91f607714e..8dc77321b4 100755
--- a/source4/lib/ldb/tests/python/sec_descriptor.py
+++ b/source4/lib/ldb/tests/python/sec_descriptor.py
@@ -9,6 +9,9 @@ import re
import random
sys.path.append("bin/python")
+import samba
+samba.ensure_external_module("subunit", "subunit/python")
+samba.ensure_external_module("testtools", "testtools")
import samba.getopt as options
diff --git a/source4/lib/ldb/tests/python/urgent_replication.py b/source4/lib/ldb/tests/python/urgent_replication.py
index 26f7d9b46d..5e9f4ad128 100755
--- a/source4/lib/ldb/tests/python/urgent_replication.py
+++ b/source4/lib/ldb/tests/python/urgent_replication.py
@@ -6,8 +6,9 @@ import sys
import os
sys.path.append("bin/python")
-sys.path.append("../lib/subunit/python")
-sys.path.append("../lib/testtools")
+import samba
+samba.ensure_external_module("subunit", "subunit/python")
+samba.ensure_external_module("testtools", "testtools")
import samba.getopt as options