summaryrefslogtreecommitdiff
path: root/script
diff options
context:
space:
mode:
authorRusty Russell <rusty@rustcorp.com.au>2012-06-22 09:44:36 +0930
committerRusty Russell <rusty@rustcorp.com.au>2012-06-22 07:35:16 +0200
commitf7f6992c1e6ee8ac4a55c2fddf169ac695362036 (patch)
treee90b7eb654055d80d230138950cc5fbb92d27dee /script
parent0265837ee8ab98b00c18411bee3770075e27f900 (diff)
downloadsamba-f7f6992c1e6ee8ac4a55c2fddf169ac695362036.tar.gz
samba-f7f6992c1e6ee8ac4a55c2fddf169ac695362036.tar.bz2
samba-f7f6992c1e6ee8ac4a55c2fddf169ac695362036.zip
autobuild: always set TDB_NO_FSYNC.
Then we unset it inside the tdb test target itself. This means that new code can't accidently forget it, and we can set it in the 'buildnice' script on sn-devel, for example. Signed-off-by: Rusty Russell <rusty@rustcorp.com.au>
Diffstat (limited to 'script')
-rwxr-xr-xscript/autobuild.py10
1 files changed, 6 insertions, 4 deletions
diff --git a/script/autobuild.py b/script/autobuild.py
index da3f646181..92fa41393c 100755
--- a/script/autobuild.py
+++ b/script/autobuild.py
@@ -13,6 +13,9 @@ from distutils.sysconfig import get_python_lib
samba_master = os.getenv('SAMBA_MASTER', 'git://git.samba.org/samba.git')
samba_master_ssh = os.getenv('SAMBA_MASTER_SSH', 'git+ssh://git.samba.org/data/git/samba.git')
+# This speeds up testing remarkably.
+os.environ['TDB_NO_FSYNC'] = '1'
+
cleanup_list = []
builddirs = {
@@ -45,7 +48,7 @@ tasks = {
("make bin/smbtorture4", "make bin/smbtorture4", "text/plain"),
("make everything", "make -j 4 everything", "text/plain"),
("install", "make install", "text/plain"),
- ("test", "TDB_NO_FSYNC=1 make test FAIL_IMMEDIATELY=1", "text/plain"),
+ ("test", "make test FAIL_IMMEDIATELY=1", "text/plain"),
("check-clean-tree", "../script/clean-source-tree.sh", "text/plain"),
("clean", "make clean", "text/plain") ],
@@ -61,7 +64,7 @@ tasks = {
# We have 'test' before 'install' because, 'test' should work without 'install'
"samba" : [ ("configure", "./configure.developer ${PREFIX} --with-selftest-prefix=./bin/ab", "text/plain"),
("make", "make -j", "text/plain"),
- ("test", "TDB_NO_FSYNC=1 make test FAIL_IMMEDIATELY=1", "text/plain"),
+ ("test", "make test FAIL_IMMEDIATELY=1", "text/plain"),
("install", "make install", "text/plain"),
("check-clean-tree", "script/clean-source-tree.sh", "text/plain"),
("clean", "make clean", "text/plain") ],
@@ -111,12 +114,11 @@ tasks = {
("configure", "./configure --enable-developer -C ${PREFIX}", "text/plain"),
("make", "make", "text/plain"),
("install", "make install", "text/plain"),
- ("test", "TDB_NO_FSYNC=1 make test", "text/plain"),
+ ("test", "make test", "text/plain"),
("check-clean-tree", "../../script/clean-source-tree.sh", "text/plain"),
("distcheck", "make distcheck", "text/plain"),
("clean", "make clean", "text/plain") ],
- # We don't use TDB_NO_FSYNC=1 here, because we want to test the transaction code
"tdb" : [
("random-sleep", "script/random-sleep.sh 60 600", "text/plain"),
("configure", "./configure --enable-developer -C ${PREFIX}", "text/plain"),