[SCM] Samba Shared Repository - branch master updated

2014-11-24 Thread Andrew Bartlett
The branch, master has been updated
   via  30c0790 lib-pyldb: Block elements should be surrounded by {} in 
py_msg.setitem()
   via  3223208 lib-pyldb: Fix docstring for msg.add() method - it was 
"S.append()"
   via  1d14af7 lib-ldb-test: Test copying message element from a message 
to a new message
   via  2d67335 lib-pyldb: Avoid crash when copying MessageElements between 
Python Message objects
   via  7f121d3 lib-ldb_ldif: Stop processing if ldb_message element name 
is NULL
   via  ea77786 lib-ldb: Check for input parameter when searching 
attributes by name
   via  4d25dfd lib-pyldb: Throw exception when we can't create 
MessageElement object
   via  18f879b lib-pyldb: Avoid leaking memory in error cases
   via  a48b533 lib-pyldb: Avoid SEGFAULT in case we can't convert passed 
value to py_String
  from  0d5adad s3-smbstatus: Fix exit code of profile output.

https://git.samba.org/?p=samba.git;a=shortlog;h=master


- Log -
commit 30c07907749063d0b0c663f1b43b02b4c6b0049d
Author: Kamen Mazdrashki 
Date:   Thu Nov 20 04:07:47 2014 +0100

lib-pyldb: Block elements should be surrounded by {} in py_msg.setitem()

Change-Id: I0d09374b27708fcaad3523d985a2db7983dbd81a
Signed-off-by: Kamen Mazdrashki 
Reviewed-by: Andrew Bartlett 

Autobuild-User(master): Andrew Bartlett 
Autobuild-Date(master): Tue Nov 25 07:24:12 CET 2014 on sn-devel-104

commit 322320889c60f31cc536342bc9a54ae258f41139
Author: Kamen Mazdrashki 
Date:   Thu Nov 20 04:06:01 2014 +0100

lib-pyldb: Fix docstring for msg.add() method - it was "S.append()"

Change-Id: I9492d3c3993fc3d68d7bf24405db6e8cd746eaac
Signed-off-by: Kamen Mazdrashki 
Reviewed-by: Andrew Bartlett 

commit 1d14af77299e88b5f0d3230ec0481ed5abaf4bdd
Author: Kamen Mazdrashki 
Date:   Tue Nov 25 03:50:52 2014 +0100

lib-ldb-test: Test copying message element from a message to a new message

Change-Id: Iefcafb418a170ee410aec900bb36eb8e01e946b1
Signed-off-by: Kamen Mazdrashki 
Reviewed-by: Andrew Bartlett 

commit 2d67335f681a60a636e48107d908778806a0b15f
Author: Kamen Mazdrashki 
Date:   Wed Nov 12 01:17:56 2014 +0100

lib-pyldb: Avoid crash when copying MessageElements between Python Message 
objects

This patch allows for following snipets in Python:
  res = ldb.search(...)
  m_from = res[0]
  m_to = Message()
  m_to.add(m_from["attrName"])

The problem previously is that we are trying to reference a
ldb_message_element that may not be a memory context on its own.
For instance, when search request from above example returns
Messages with more than one attribute, this leads immediately
to "Bad talloc magic value" crash, every message element beside
the first one is not a memory context

Signed-off-by: Kamen Mazdrashki 
Reviewed-by: Andrew Bartlett 

commit 7f121d3860ee3289f5fd397ab3312634d11cb2f2
Author: Kamen Mazdrashki 
Date:   Wed Nov 12 01:12:31 2014 +0100

lib-ldb_ldif: Stop processing if ldb_message element name is NULL

I have hit this while using Python bindings for testing and
forgot to pass 'name' argument to MessageElement constructor
Passing NULL as 'name' is obviously a mistake and this commits
aims to warn about such unintetional mistakes.

Signed-off-by: Kamen Mazdrashki 
Reviewed-by: Andrew Bartlett 

commit ea7778697e22ffbe22634974144c6e5c142a85d6
Author: Kamen Mazdrashki 
Date:   Tue Nov 11 02:56:32 2014 +0100

lib-ldb: Check for input parameter when searching attributes by name

This prevents a segfault that is hard to be tracked down from
Python bindings for instance.

Signed-off-by: Kamen Mazdrashki 
Reviewed-by: Andrew Bartlett 

commit 4d25dfd611e7786a17975fcaed039be971bac7da
Author: Kamen Mazdrashki 
Date:   Mon Nov 10 22:59:07 2014 +0100

lib-pyldb: Throw exception when we can't create MessageElement object

At the moment we return an error, but no exception and it is
hard to instantly see what the problem is from Python

Signed-off-by: Kamen Mazdrashki 
Reviewed-by: Andrew Bartlett 

commit 18f879b857c174371a9fe27722c70051ed68ed64
Author: Kamen Mazdrashki 
Date:   Sun Nov 9 04:31:36 2014 +0100

lib-pyldb: Avoid leaking memory in error cases

Signed-off-by: Kamen Mazdrashki 
Reviewed-by: Andrew Bartlett 

commit a48b533ea5c9faae3429b0fb680b52b14676cd22
Author: Kamen Mazdrashki 
Date:   Sun Nov 9 04:28:47 2014 +0100

lib-pyldb: Avoid SEGFAULT in case we can't convert passed value to py_String

Signed-off-by: Kamen Mazdrashki 
Reviewed-by: Andrew Bartlett 

---

Summary of changes:
 lib/ldb/common/ldb_attributes.c | 15 --
 lib/ldb/common/ldb_ldif.c   |  7 +++
 lib/ldb/pyldb.c | 46 

[SCM] Samba Shared Repository - branch v4-2-test updated

2014-11-24 Thread Karolin Seeger
The branch, v4-2-test has been updated
   via  e1b2b08 s4-dns: dlz-bind: Add trailing '.' to all fqdn strings
   via  d2d6c49 s4-dns: Add support for BIND 9.10
   via  6e7d183 s4-dns: Update dlz_minimal.h based on BIND release 9.10
   via  3f8552a s4-dns: Check DLZ_DLOPEN_VERSION for different BIND versions
   via  8ba5688 s4-dns: Update template variables, change BIND98 --> BIND9_8
   via  943f2b6 samba: pass down size_t instead of int to 
add_string_to_array().
   via  26f9bf1 lib/util: use size_t for add_string_to_array().
   via  05d0f5f s3-proto: remove duplicate proto for add_string_to_array().
   via  8e2765b dbwrap_ctdb: Pass on mutex flags to tdb_open
  from  d1b9915 pdb_tdb: Fix a TALLOC/SAFE_FREE mixup

https://git.samba.org/?p=samba.git;a=shortlog;h=v4-2-test


- Log -
commit e1b2b085954eb37c5c3770143e4df77db1c41928
Author: Amitay Isaacs 
Date:   Mon Nov 3 11:57:50 2014 +1100

s4-dns: dlz-bind: Add trailing '.' to all fqdn strings

BIND 9.10.x is strict when sending records via putrr and putnamedrr.

Bug: https://bugzilla.samba.org/show_bug.cgi?id=10620

Thanks to Guenter Kukkukk for identifying the problem and resolution.

Signed-off-by: Amitay Isaacs 
Reviewed-by: Guenter Kukkukk 

Autobuild-User(master): Amitay Isaacs 
Autobuild-Date(master): Fri Nov 21 06:14:55 CET 2014 on sn-devel-104

(cherry picked from commit b7f6b09a13daaa702aef5a0ab9f458521e4902b1)

Autobuild-User(v4-2-test): Karolin Seeger 
Autobuild-Date(v4-2-test): Mon Nov 24 23:35:13 CET 2014 on sn-devel-104

commit d2d6c4992a3d5e233fa6eadd8ed714df2b9b64c0
Author: Amitay Isaacs 
Date:   Mon Oct 20 16:32:42 2014 +1100

s4-dns: Add support for BIND 9.10

Signed-off-by: Amitay Isaacs 
Reviewed-by: Matthieu Patou 

Autobuild-User(master): Amitay Isaacs 
Autobuild-Date(master): Sat Oct 25 05:42:19 CEST 2014 on sn-devel-104

(cherry picked from commit faa3423d1a26eb6103389b234add0f1e8d0dfc08)

commit 6e7d18338a64b8e5d6e39909daf279bebbc2936c
Author: Amitay Isaacs 
Date:   Mon Oct 20 15:31:30 2014 +1100

s4-dns: Update dlz_minimal.h based on BIND release 9.10

Signed-off-by: Amitay Isaacs 
Reviewed-by: Matthieu Patou 
(cherry picked from commit aeb6ad8a9c2713c6c71a2ac4cd355dd1bda6cc51)

commit 3f8552a672215c7e4434192baff39eefffe16fc9
Author: Amitay Isaacs 
Date:   Sun Oct 19 12:57:55 2014 +1100

s4-dns: Check DLZ_DLOPEN_VERSION for different BIND versions

Signed-off-by: Amitay Isaacs 
Reviewed-by: Matthieu Patou 
(cherry picked from commit 1e5c14548c8d03f66aaa908654c94f36a94455f2)

commit 8ba5688b1096f2df0ee93eedd665efe18e70f67d
Author: Amitay Isaacs 
Date:   Mon Oct 20 16:40:05 2014 +1100

s4-dns: Update template variables, change BIND98 --> BIND9_8

This makes it easier to add suport for BIND 9.10.

Signed-off-by: Amitay Isaacs 
Reviewed-by: Matthieu Patou 
(cherry picked from commit 58334eb58ed2f11c6f212481b6be772d9f182810)

commit 943f2b68c92ad5ba36f5d0af327c0d9a0d147d80
Author: Günther Deschner 
Date:   Fri Nov 14 14:12:26 2014 +0100

samba: pass down size_t instead of int to add_string_to_array().

Guenther

Signed-off-by: Günther Deschner 
Reviewed-by: Andreas Schneider 

Autobuild-User(master): Günther Deschner 
Autobuild-Date(master): Mon Nov 17 19:53:22 CET 2014 on sn-devel-104

The last 3 patches address
BUG: https://bugzilla.samba.org/show_bug.cgi?id=10942
cleanup add_string_to_array and usage

commit 26f9bf1fa4f207005fc2c26e85eeb7a091ce8a27
Author: Günther Deschner 
Date:   Fri Nov 14 13:27:45 2014 +0100

lib/util: use size_t for add_string_to_array().

Guenther

Signed-off-by: Günther Deschner 
Reviewed-by: Andreas Schneider 

commit 05d0f5f2c6774d699c0b9a98dc45efe70b489383
Author: Günther Deschner 
Date:   Fri Nov 14 13:47:16 2014 +0100

s3-proto: remove duplicate proto for add_string_to_array().

Guenther

Signed-off-by: Günther Deschner 
Reviewed-by: Andreas Schneider 

commit 8e2765bfce6353436b0185e2279c8ba7dae376ca
Author: Volker Lendecke 
Date:   Thu Nov 6 11:59:34 2014 +0100

dbwrap_ctdb: Pass on mutex flags to tdb_open

Without this, ctdb can create a tdb file with mutex activated, but the
local tdb_open will not open the tdb due to strict flags checks whether
mutexes are possible.

Bug: https://bugzilla.samba.org/show_bug.cgi?id=10922

Signed-off-by: Volker Lendecke 
Reviewed-by: Stefan Metzmacher 

Autobuild-User(master): Stefan Metzmacher 
Autobuild-Date(master): Sun Nov 16 12:13:54 CET 2014 on sn-devel-104

(cherry picked from commit 1106ede280938d05325baa146bd524aa3568deaf)

---

Summary of changes:
 lib/util/sam

[SCM] Samba Shared Repository - branch v4-1-test updated

2014-11-24 Thread Karolin Seeger
The branch, v4-1-test has been updated
   via  4ddd4c6 s4-dns: dlz-bind: Add trailing '.' to all fqdn strings
   via  a5adad6 s4-dns: Add support for BIND 9.10
   via  a30eeec s4-dns: Update dlz_minimal.h based on BIND release 9.10
   via  8fed025 s4-dns: Check DLZ_DLOPEN_VERSION for different BIND versions
   via  221934c s4-dns: Update template variables, change BIND98 --> BIND9_8
   via  c4ae1b4 samba: pass down size_t instead of int to 
add_string_to_array().
   via  fed8ae0 lib/util: use size_t for add_string_to_array().
   via  e0b65dd s3-proto: remove duplicate proto for add_string_to_array().
  from  2947da5 Revert "buildtools: Rename perl vendorarch configure 
option."

https://git.samba.org/?p=samba.git;a=shortlog;h=v4-1-test


- Log -
commit 4ddd4c6ace28cdb1440587b719061a626c9377a3
Author: Amitay Isaacs 
Date:   Mon Nov 3 11:57:50 2014 +1100

s4-dns: dlz-bind: Add trailing '.' to all fqdn strings

BIND 9.10.x is strict when sending records via putrr and putnamedrr.

Bug: https://bugzilla.samba.org/show_bug.cgi?id=10620

Thanks to Guenter Kukkukk for identifying the problem and resolution.

Signed-off-by: Amitay Isaacs 
Reviewed-by: Guenter Kukkukk 

Autobuild-User(master): Amitay Isaacs 
Autobuild-Date(master): Fri Nov 21 06:14:55 CET 2014 on sn-devel-104

(cherry picked from commit b7f6b09a13daaa702aef5a0ab9f458521e4902b1)

Autobuild-User(v4-1-test): Karolin Seeger 
Autobuild-Date(v4-1-test): Mon Nov 24 23:27:37 CET 2014 on sn-devel-104

commit a5adad6f82517ae07db4eadadcef1cfd475b55d5
Author: Amitay Isaacs 
Date:   Mon Oct 20 16:32:42 2014 +1100

s4-dns: Add support for BIND 9.10

Signed-off-by: Amitay Isaacs 
Reviewed-by: Matthieu Patou 

Autobuild-User(master): Amitay Isaacs 
Autobuild-Date(master): Sat Oct 25 05:42:19 CEST 2014 on sn-devel-104

(cherry picked from commit faa3423d1a26eb6103389b234add0f1e8d0dfc08)

Conflicts:
python/samba/provision/sambadns.py
source4/dns_server/dlz_bind9.c
source4/setup/named.conf.dlz

commit a30eeec0606952df43835fb3f51357d06952e1cd
Author: Amitay Isaacs 
Date:   Mon Oct 20 15:31:30 2014 +1100

s4-dns: Update dlz_minimal.h based on BIND release 9.10

Signed-off-by: Amitay Isaacs 
Reviewed-by: Matthieu Patou 
(cherry picked from commit aeb6ad8a9c2713c6c71a2ac4cd355dd1bda6cc51)

commit 8fed02562e008af9b49dca5c02a95af81e9e5abd
Author: Amitay Isaacs 
Date:   Sun Oct 19 12:57:55 2014 +1100

s4-dns: Check DLZ_DLOPEN_VERSION for different BIND versions

Signed-off-by: Amitay Isaacs 
Reviewed-by: Matthieu Patou 
(cherry picked from commit 1e5c14548c8d03f66aaa908654c94f36a94455f2)

commit 221934c68dd7accbb415393c377c7f09d0dd41a1
Author: Amitay Isaacs 
Date:   Mon Oct 20 16:40:05 2014 +1100

s4-dns: Update template variables, change BIND98 --> BIND9_8

This makes it easier to add suport for BIND 9.10.

Signed-off-by: Amitay Isaacs 
Reviewed-by: Matthieu Patou 
(cherry picked from commit 58334eb58ed2f11c6f212481b6be772d9f182810)

Conflicts:
python/samba/provision/sambadns.py
source4/setup/named.conf.dlz

commit c4ae1b4d1796d57fbf18e1b38b1f3896f18c9378
Author: Günther Deschner 
Date:   Fri Nov 14 14:12:26 2014 +0100

samba: pass down size_t instead of int to add_string_to_array().

Guenther

Signed-off-by: Günther Deschner 
Reviewed-by: Andreas Schneider 

Autobuild-User(master): Günther Deschner 
Autobuild-Date(master): Mon Nov 17 19:53:22 CET 2014 on sn-devel-104

The last 3 patches address
BUG: https://bugzilla.samba.org/show_bug.cgi?id=10942
cleanup add_string_to_array and usage

commit fed8ae0a3923e425f5d45af3c7e5d87e9e6c6507
Author: Günther Deschner 
Date:   Fri Nov 14 13:27:45 2014 +0100

lib/util: use size_t for add_string_to_array().

Guenther

Signed-off-by: Günther Deschner 
Reviewed-by: Andreas Schneider 

commit e0b65ddefc5e8bf11ad284899c17109163d11d9f
Author: Günther Deschner 
Date:   Fri Nov 14 13:47:16 2014 +0100

s3-proto: remove duplicate proto for add_string_to_array().

Guenther

Signed-off-by: Günther Deschner 
Reviewed-by: Andreas Schneider 

---

Summary of changes:
 lib/util/samba_util.h   |   2 +-
 lib/util/util_strlist.c |   2 +-
 libcli/ldap/ldap_message.h  |   2 +-
 libgpo/gpext/gpext.c|   2 +-
 source3/include/proto.h |   3 -
 source3/lib/eventlog/eventlog.c |   2 +-
 source3/libads/ldap.c   |   2 +-
 source3/libnet/libnet_join.c|   4 +-
 source3/rpc_server/lsa/srv_lsa_nt.c |   2 +-
 source3/rpc_ser

[SCM] Samba Shared Repository - branch master updated

2014-11-24 Thread Jeremy Allison
The branch, master has been updated
   via  0d5adad s3-smbstatus: Fix exit code of profile output.
   via  bcb0d46 messaging3: Fix sending large messages on FreeBSD
   via  281c58e unix_msg: Reformat unix_dgram_send a bit
   via  6557a02 s3-smbclient: Return success if we listed the shares.
   via  4083ba6 dsdb: Remove a self-assignment
  from  80cc52c dbwrap: Fix a enum conversion

https://git.samba.org/?p=samba.git;a=shortlog;h=master


- Log -
commit 0d5adad07b572e6f7c4ac1a560593469df48352c
Author: Andreas Schneider 
Date:   Mon Nov 24 17:46:27 2014 +0100

s3-smbstatus: Fix exit code of profile output.

BUG: https://bugzilla.samba.org/show_bug.cgi?id=10961

Signed-off-by: Andreas Schneider 
Reviewed-by: Jeremy Allison 

Autobuild-User(master): Jeremy Allison 
Autobuild-Date(master): Mon Nov 24 21:13:51 CET 2014 on sn-devel-104

commit bcb0d46bb27ba78cd045926a81894d1f09d2c02b
Author: Volker Lendecke 
Date:   Mon Nov 24 16:31:07 2014 +0100

messaging3: Fix sending large messages on FreeBSD

Signed-off-by: Volker Lendecke 
Reviewed-by: Jeremy Allison 

commit 281c58e04654e152caead47602603cfbf7fd4e0f
Author: Volker Lendecke 
Date:   Mon Nov 24 16:27:39 2014 +0100

unix_msg: Reformat unix_dgram_send a bit

This makes the next commit a bit more readable

Signed-off-by: Volker Lendecke 
Reviewed-by: Jeremy Allison 

commit 6557a0218a3f8d9b6072718ef2ed0e548bd9b5c2
Author: Andreas Schneider 
Date:   Mon Nov 24 16:26:13 2014 +0100

s3-smbclient: Return success if we listed the shares.

BUG: https://bugzilla.samba.org/show_bug.cgi?id=10960

Signed-off-by: Andreas Schneider 
Reviewed-by: Jeremy Allison 

commit 4083ba6fe5ce9378b9194db4272cbf8fb847baa9
Author: Volker Lendecke 
Date:   Mon Nov 24 14:34:24 2014 +0100

dsdb: Remove a self-assignment

Signed-off-by: Volker Lendecke 
Reviewed-by: Jeremy Allison 

---

Summary of changes:
 source3/client/client.c  | 2 +-
 source3/lib/unix_msg/unix_msg.c  | 8 +++-
 source3/utils/status.c   | 7 +--
 source4/dsdb/samdb/ldb_modules/dirsync.c | 1 -
 4 files changed, 13 insertions(+), 5 deletions(-)


Changeset truncated at 500 lines:

diff --git a/source3/client/client.c b/source3/client/client.c
index c90c450..5d70897 100644
--- a/source3/client/client.c
+++ b/source3/client/client.c
@@ -5303,7 +5303,7 @@ static int do_host_query(const char *query_host)
 
if (cli == NULL) {
d_printf("NetBIOS over TCP disabled -- no workgroup 
available\n");
-   return 1;
+   return 0;
}
 
cli_set_timeout(cli, io_timeout*1000);
diff --git a/source3/lib/unix_msg/unix_msg.c b/source3/lib/unix_msg/unix_msg.c
index 00ac7f5..7ca506a 100644
--- a/source3/lib/unix_msg/unix_msg.c
+++ b/source3/lib/unix_msg/unix_msg.c
@@ -741,7 +741,13 @@ static int unix_dgram_send(struct unix_dgram_ctx *ctx,
if (ret >= 0) {
return 0;
}
-   if ((errno != EWOULDBLOCK) && (errno != EAGAIN) && (errno != EINTR)) {
+   if ((errno != EWOULDBLOCK) &&
+   (errno != EAGAIN) &&
+#ifdef ENOBUFS
+   /* FreeBSD can give this for large messages */
+   (errno != ENOBUFS) &&
+#endif
+   (errno != EINTR)) {
return errno;
}
 
diff --git a/source3/utils/status.c b/source3/utils/status.c
index 64c2a93..4e1dae7 100644
--- a/source3/utils/status.c
+++ b/source3/utils/status.c
@@ -364,6 +364,7 @@ int main(int argc, const char *argv[])
int ret = 0;
struct messaging_context *msg_ctx;
char *db_path;
+   bool ok;
 
sec_init();
load_case_tables();
@@ -463,10 +464,12 @@ int main(int argc, const char *argv[])
switch (profile_only) {
case 'P':
/* Dump profile data */
-   return status_profile_dump(verbose);
+   ok = status_profile_dump(verbose);
+   return ok ? 0 : 1;
case 'R':
/* Continuously display rate-converted data */
-   return status_profile_rates(verbose);
+   ok = status_profile_rates(verbose);
+   return ok ? 0 : 1;
default:
break;
}
diff --git a/source4/dsdb/samdb/ldb_modules/dirsync.c 
b/source4/dsdb/samdb/ldb_modules/dirsync.c
index c93189e..b5510ec 100644
--- a/source4/dsdb/samdb/ldb_modules/dirsync.c
+++ b/source4/dsdb/samdb/ldb_modules/dirsync.c
@@ -571,7 +571,6 @@ skip:
if (tmpel->values == 
NULL) {
return 
ldb_oom(ldb);

[SCM] Samba Shared Repository - branch master updated

2014-11-24 Thread Volker Lendecke
The branch, master has been updated
   via  80cc52c dbwrap: Fix a enum conversion
  from  b7efc12 Print number of slow tests from script rather than wscript.

https://git.samba.org/?p=samba.git;a=shortlog;h=master


- Log -
commit 80cc52c313fb8fd04a02f7b8316d738b942c0315
Author: Volker Lendecke 
Date:   Mon Nov 24 14:52:42 2014 +0100

dbwrap: Fix a enum conversion

Signed-off-by: Volker Lendecke 
Reviewed-by: Ira Cooper 

Autobuild-User(master): Volker Lendecke 
Autobuild-Date(master): Mon Nov 24 18:36:00 CET 2014 on sn-devel-104

---

Summary of changes:
 lib/dbwrap/dbwrap_ntdb.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)


Changeset truncated at 500 lines:

diff --git a/lib/dbwrap/dbwrap_ntdb.c b/lib/dbwrap/dbwrap_ntdb.c
index 5be5414..5a8ce4b 100644
--- a/lib/dbwrap/dbwrap_ntdb.c
+++ b/lib/dbwrap/dbwrap_ntdb.c
@@ -313,7 +313,7 @@ static enum NTDB_ERROR db_ntdb_parser(NTDB_DATA key, 
NTDB_DATA data,
  struct db_ntdb_parse_state *state)
 {
state->parser(key, data, state->private_data);
-   return TDB_SUCCESS;
+   return NTDB_SUCCESS;
 }
 
 static NTSTATUS db_ntdb_parse(struct db_context *db, TDB_DATA key,


-- 
Samba Shared Repository


autobuild: intermittent test failure detected

2014-11-24 Thread autobuild
The autobuild test system has detected an intermittent failing test in 
the current master tree.

The autobuild log of the failure is available here:

   http://git.samba.org/autobuild.flakey/2014-11-24-1644/flakey.log

The samba build logs are available here:

   http://git.samba.org/autobuild.flakey/2014-11-24-1644/samba.stderr
   http://git.samba.org/autobuild.flakey/2014-11-24-1644/samba.stdout
  
The top commit at the time of the failure was:

commit b7efc124065612d9c4c35e2e7447a5ee5d150d1f
Author: Jelmer Vernooij 
Date:   Sat Nov 1 13:54:31 2014 -0700

Print number of slow tests from script rather than wscript.

Change-Id: I6eaa0803b95cc81f514a2176f4e06f1e3fff4077
Signed-Off-By: Jelmer Vernooij 

Reviewed-by: Andrew Bartlett 

Autobuild-User(master): Jelmer Vernooij 
Autobuild-Date(master): Mon Nov 24 13:06:46 CET 2014 on sn-devel-104


[SCM] Samba Website Repository - branch master updated

2014-11-24 Thread Lars Müller
The branch, master has been updated
   via  ae1b1c6 Update Pantek data
  from  1c4a2f6 Rename Bokxing IT to 1A First Alternative

https://git.samba.org/?p=samba-web.git;a=shortlog;h=master


- Log -
commit ae1b1c63da8ded2cbc552b2514df088a451edc0b
Author: Lars Müller 
Date:   Mon Nov 24 16:42:34 2014 +0100

Update Pantek data

---

Summary of changes:
 support/us.html | 23 ---
 1 file changed, 8 insertions(+), 15 deletions(-)


Changeset truncated at 500 lines:

diff --git a/support/us.html b/support/us.html
index 1d44190..85399b2 100644
--- a/support/us.html
+++ b/support/us.html
@@ -214,36 +214,29 @@ Support contracts available with four hour response SLA.
 
 
 
-
 
 Pantek Inc.
 
-6133 Rockside Road #301
-Cleveland, Ohio
+4401 Rockside Road #205
+Independence, OH 44131
 
 http://www.pantek.com";>http://www.pantek.com
-877-LINUX-FIX, (216)344-1614
+1-877-LINUX-FIX, 1-216-344-1614
 mailto:supp...@pantek.com";>supp...@pantek.com
 Expert IT Services
 
 
-When you need the best, when you need top tier engineers, when you need
-it NOW...  you need Pantek. Our experienced, friendly, Level 3 support team
-are all US based, never outsourced. We've been doing Open Source Tech Support
-since 1995. Help Desk Technical Support - 24/7/365 - By phone, email, remote
-login, or on-site at your location, Pantek's expert Linux and Open Source
-engineers provide advanced Tech Support for a wide range of Linux and Open
-Source software applications, distributions and systems 24/7/365. Vendor
-Neutral, we provide Technical Support for all Linux and Open Source software.
+Pantek provides advanced 24/7/365 Samba, Linux and Open Source Tech Support,
+Consulting and Administration services. Vendor Neutral, we've been providing
+Technical Support for all Linux and Open Source software since 1995.
 
 Specialty samba capabilities: Installing SAMBA on all supported platforms.
 Integrating SAMBA with PAM, LDAP, Winbind. Installing SAMBA and LDAP as a
 Primary Domain Controller in a Windows Domain.  Configuration and
 troubleshooting of existing SAMBA installations.  Integrating SAMBA with
 Microsoft Active Directory services.
-
-Special Notes: Visit our web site, email us at supp...@pantek.com, or
-call our 24/7/365 phone number at 877-LINUX-FIX to begin support.
+Experts are standing by 24/7/365. Open a Support Ticket and receive support
+within one hour.
 
 
 


-- 
Samba Website Repository


[SCM] Samba Shared Repository - branch master updated

2014-11-24 Thread Jelmer Vernooij
The branch, master has been updated
   via  b7efc12 Print number of slow tests from script rather than wscript.
   via  869a9f7 sam: Use samba.tests.subunitrun.
   via  4f75f17 Use samba.tests.subunitrun in dsdb ldap and ldap_schema 
tests.
   via  98b5380 Use samba.tests.subunitrun in urgent replication test.
  from  2c67d55 Include mimeparse, which is used by subunit/testtools.

https://git.samba.org/?p=samba.git;a=shortlog;h=master


- Log -
commit b7efc124065612d9c4c35e2e7447a5ee5d150d1f
Author: Jelmer Vernooij 
Date:   Sat Nov 1 13:54:31 2014 -0700

Print number of slow tests from script rather than wscript.

Change-Id: I6eaa0803b95cc81f514a2176f4e06f1e3fff4077
Signed-Off-By: Jelmer Vernooij 

Reviewed-by: Andrew Bartlett 

Autobuild-User(master): Jelmer Vernooij 
Autobuild-Date(master): Mon Nov 24 13:06:46 CET 2014 on sn-devel-104

commit 869a9f7a3a01810c1c1e3287b82034f67457b0b5
Author: Jelmer Vernooij 
Date:   Sun Nov 2 09:00:09 2014 -0800

sam: Use samba.tests.subunitrun.

Change-Id: Ic2ac4b335cf805ddbd442a065c4eaf6ef2b210d9
Signed-off-by: Jelmer Vernooij 
Reviewed-by: Andrew Bartlett 

commit 4f75f17ba7c9b80cf3aa0ce2db57e1754464403a
Author: Jelmer Vernooij 
Date:   Sat Nov 1 21:31:18 2014 -0700

Use samba.tests.subunitrun in dsdb ldap and ldap_schema tests.

Change-Id: I51ddc55720a23013a2c6ae20e3225f027348083c
Signed-off-by: Jelmer Vernooij 
Reviewed-by: Andrew Bartlett 

commit 98b5380af65ea1ec760d00187355384de0757b04
Author: Jelmer Vernooij 
Date:   Sat Nov 1 21:22:59 2014 -0700

Use samba.tests.subunitrun in urgent replication test.

Change-Id: I3e7a32876d557ac376326ab75e851298e874d584
Signed-off-by: Jelmer Vernooij 
Reviewed-by: Andrew Bartlett 

---

Summary of changes:
 script/show_testsuite_time  |  2 +
 selftest/wscript|  5 +--
 source4/dsdb/tests/python/ldap.py   | 34 ---
 source4/dsdb/tests/python/ldap_schema.py| 55 ++---
 source4/dsdb/tests/python/sam.py| 12 ++
 source4/dsdb/tests/python/urgent_replication.py | 17 ++--
 6 files changed, 62 insertions(+), 63 deletions(-)


Changeset truncated at 500 lines:

diff --git a/script/show_testsuite_time b/script/show_testsuite_time
index fb9ea2f..6e5808a 100755
--- a/script/show_testsuite_time
+++ b/script/show_testsuite_time
@@ -22,6 +22,8 @@ if ($#ARGV >= 1) {
}
 }
 
+print "TOP $max slowest tests\n";
+
 while(<$fh>)
 {
if (m/^testsuite: (.*)/) {
diff --git a/selftest/wscript b/selftest/wscript
index fd92531..cf57adc 100644
--- a/selftest/wscript
+++ b/selftest/wscript
@@ -135,10 +135,10 @@ def cmd_testonly(opt):
   'nmblookup4:nmblookup4,' +
   'smbclient3:smbclient,' +
   'smbclient4:smbclient4,' +
-  'smbtorture4:smbtorture,' + 
+  'smbtorture4:smbtorture,' +
   'ntlm_auth3:ntlm_auth')
 
-env.OPTIONS = '--binary-mapping=%s' % binary_mapping 
+env.OPTIONS = '--binary-mapping=%s' % binary_mapping
 if not Options.options.SLOWTEST:
 env.OPTIONS += ' --exclude=${srcdir}/selftest/slow'
 if Options.options.QUICKTEST:
@@ -241,7 +241,6 @@ def cmd_testonly(opt):
 subunit_file = "%s/subunit" % env.SELFTEST_PREFIX
 if os.path.exists(subunit_file):
 nb = Options.options.NB_SLOWEST
-print "TOP %d slowest tests" % nb
 cmd = "./script/show_testsuite_time %s %d" % (subunit_file, nb)
 runcmd = EXPAND_VARIABLES(opt, cmd)
 RUN_COMMAND(runcmd, env=env)
diff --git a/source4/dsdb/tests/python/ldap.py 
b/source4/dsdb/tests/python/ldap.py
index b1f0d6a..7139f3c 100755
--- a/source4/dsdb/tests/python/ldap.py
+++ b/source4/dsdb/tests/python/ldap.py
@@ -2,6 +2,21 @@
 # -*- coding: utf-8 -*-
 # This is a port of the original in testprogs/ejs/ldap.js
 
+# Copyright (C) Jelmer Vernooij  2008-2011
+#
+# This program is free software; you can redistribute it and/or modify
+# it under the terms of the GNU General Public License as published by
+# the Free Software Foundation; either version 3 of the License, or
+# (at your option) any later version.
+#
+# This program is distributed in the hope that it will be useful,
+# but WITHOUT ANY WARRANTY; without even the implied warranty of
+# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+# GNU General Public License for more details.
+#
+# You should have received a copy of the GNU General Public License
+# along with this program.  If not, see .
+
 import optparse
 import sys
 import time
@@ -10,9 +25,7 @@ import os
 
 sys.path.insert(0, "bin/python")
 import samba
-samba.ensure_external_module("testtools", "t