summaryrefslogtreecommitdiff
path: root/script
diff options
context:
space:
mode:
authorStefan Metzmacher <metze@samba.org>2010-10-25 08:16:04 +0000
committerStefan Metzmacher <metze@samba.org>2010-10-25 08:16:28 +0000
commite54d58d11388d0ff4afe3d08e0b19b0dd43835ad (patch)
treeb5dcf960d3b1d063ee85b2c158e82fbbdc0800a5 /script
parent47e2371598846271fcdd8b4bb43869acce1de8ed (diff)
downloadsamba-e54d58d11388d0ff4afe3d08e0b19b0dd43835ad.tar.gz
samba-e54d58d11388d0ff4afe3d08e0b19b0dd43835ad.tar.bz2
samba-e54d58d11388d0ff4afe3d08e0b19b0dd43835ad.zip
autobuild: add some comments
metze
Diffstat (limited to 'script')
-rwxr-xr-xscript/autobuild.py2
1 files changed, 2 insertions, 0 deletions
diff --git a/script/autobuild.py b/script/autobuild.py
index fdcbff60fa..a124ddfd78 100755
--- a/script/autobuild.py
+++ b/script/autobuild.py
@@ -24,6 +24,7 @@ tasks = {
("install", "make install", "text/plain"),
("test", "TDB_NO_FSYNC=1 make test FAIL_IMMEDIATELY=1", "text/plain") ],
+ # We have 'test' before 'install' because, 'test' should work without 'install'
"source4" : [ ("configure", "./configure.developer ${PREFIX}", "text/plain"),
("make", "make -j", "text/plain"),
("test", "TDB_NO_FSYNC=1 make test FAIL_IMMEDIATELY=1", "text/plain"),
@@ -34,6 +35,7 @@ tasks = {
("install", "make install", "text/plain"),
("test", "TDB_NO_FSYNC=1 make test", "text/plain") ],
+ # We don't use TDB_NO_FSYNC=1 here, because we want to test the transaction code
"lib/tdb" : [ ("autogen", "./autogen-waf.sh", "text/plain"),
("configure", "./configure --enable-developer -C ${PREFIX}", "text/plain"),
("make", "make -j", "text/plain"),