diff options
-rwxr-xr-x | source4/selftest/tests.py | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/source4/selftest/tests.py b/source4/selftest/tests.py index d56d4ba8af..f108823afd 100755 --- a/source4/selftest/tests.py +++ b/source4/selftest/tests.py @@ -207,9 +207,8 @@ for t in smb4torture_testsuites("ldap."): ldbdir = os.path.join(samba4srcdir, "lib/ldb") # Don't run LDB tests when using system ldb, as we won't have ldbtest installed if os.path.exists(os.path.join(samba4bindir, "ldbtest")): - plantestsuite("ldb.base", "none", - "TEST_DATA_PREFIX=$PREFIX %s/tests/test-tdb.sh" % ldbdir, - allow_empty_output=True) + plantestsuite("ldb.base", "none", "%s/tests/test-tdb.sh" % ldbdir, + allow_empty_output=True) else: skiptestsuite("ldb.base", "Using system LDB, ldbtest not available") |