summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rwxr-xr-xctdb/wscript2
-rwxr-xr-xscript/autobuild.py2
2 files changed, 2 insertions, 2 deletions
diff --git a/ctdb/wscript b/ctdb/wscript
index 26730981a37..f69bf580f71 100755
--- a/ctdb/wscript
+++ b/ctdb/wscript
@@ -520,7 +520,7 @@ def test(ctx):
Scripting.commands.append('testonly')
def autotest(ctx):
- cmd = 'tests/run_tests.sh -e -S -C'
+ cmd = 'LD_PRELOAD=bin/shared/libsocket-wrapper.so tests/run_tests.sh -e -S -C'
samba_utils.RUN_COMMAND(cmd)
def dist():
diff --git a/script/autobuild.py b/script/autobuild.py
index 340028ed490..9ebdf2bc27c 100755
--- a/script/autobuild.py
+++ b/script/autobuild.py
@@ -36,7 +36,7 @@ defaulttasks = [ "ctdb", "samba", "samba-ctdb", "samba-libs", "ldb", "tdb", "ntd
tasks = {
"ctdb" : [ ("random-sleep", "../script/random-sleep.sh 60 600", "text/plain"),
- ("configure", "./configure ${PREFIX} --enable-socket-wrapper ", "text/plain"),
+ ("configure", "./configure ${PREFIX}", "text/plain"),
("make", "make all", "text/plain"),
("install", "make install", "text/plain"),
("test", "make autotest", "text/plain"),