autobuild: Enable standalone tdb2 tests
authorAmitay Isaacs <amitay@gmail.com>
Wed, 7 Mar 2012 02:32:22 +0000 (13:32 +1100)
committerAmitay Isaacs <amitay@samba.org>
Thu, 8 Mar 2012 08:32:24 +0000 (09:32 +0100)
Autobuild-User: Amitay Isaacs <amitay@samba.org>
Autobuild-Date: Thu Mar  8 09:32:24 CET 2012 on sn-devel-104

script/autobuild.py

index 8ddd4b3e66b62044e58fbaf807e01a1d20f325fa..d8a1ad354ecee71f86adbceb84aafd6f89e54bce 100755 (executable)
@@ -19,6 +19,7 @@ builddirs = {
     "samba4"  : ".",
     "ldb"     : "lib/ldb",
     "tdb"     : "lib/tdb",
+    "tdb2"    : "lib/tdb2",
     "talloc"  : "lib/talloc",
     "replace" : "lib/replace",
     "tevent"  : "lib/tevent",
@@ -28,7 +29,7 @@ builddirs = {
     "retry"   : "."
     }
 
-defaulttasks = [ "samba3", "samba4", "ldb", "tdb", "talloc", "replace", "tevent", "pidl" ]
+defaulttasks = [ "samba3", "samba4", "ldb", "tdb", "tdb2", "talloc", "replace", "tevent", "pidl" ]
 
 tasks = {
     "samba3" : [ ("autogen", "./autogen.sh", "text/plain"),
@@ -69,6 +70,14 @@ tasks = {
               ("distcheck", "make distcheck", "text/plain"),
               ("clean", "make clean", "text/plain") ],
 
+    "tdb2" : [ ("configure", "./configure --enable-developer -C ${PREFIX}", "text/plain"),
+               ("make", "make -j", "text/plain"),
+               ("install", "make install", "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") ],
+
     "talloc" : [ ("configure", "./configure --enable-developer -C ${PREFIX}", "text/plain"),
                  ("make", "make -j", "text/plain"),
                  ("install", "make install", "text/plain"),