diff options
author | Jelmer Vernooij <jelmer@samba.org> | 2007-03-05 01:50:33 +0000 |
---|---|---|
committer | Gerald (Jerry) Carter <jerry@samba.org> | 2007-10-10 14:49:13 -0500 |
commit | 1d75e907e28fa0ee21c4693cbac9e0cdfb11c111 (patch) | |
tree | 61c045f1986474deb6e6839b75ff36d5832052b9 /source4/torture | |
parent | 0a28fbae1b7c00a32fe5b3d8bfa1cb0d8c8d4a85 (diff) | |
download | samba-1d75e907e28fa0ee21c4693cbac9e0cdfb11c111.tar.gz samba-1d75e907e28fa0ee21c4693cbac9e0cdfb11c111.tar.bz2 samba-1d75e907e28fa0ee21c4693cbac9e0cdfb11c111.zip |
r21694: Some more testing updates.
(This used to be commit 9247626b1c5f1eec0cedd6be221aafc41d9a26ab)
Diffstat (limited to 'source4/torture')
-rw-r--r-- | source4/torture/local/config.mk | 1 | ||||
-rw-r--r-- | source4/torture/local/local.c | 1 | ||||
-rw-r--r-- | source4/torture/rpc/winreg.c | 3 |
3 files changed, 3 insertions, 2 deletions
diff --git a/source4/torture/local/config.mk b/source4/torture/local/config.mk index 56fd65bc9c..f9e3d58d03 100644 --- a/source4/torture/local/config.mk +++ b/source4/torture/local/config.mk @@ -26,6 +26,7 @@ OBJ_FILES = \ ../../lib/util/tests/strlist.o \ ../../lib/util/tests/file.o \ ../../lib/util/tests/genrand.o \ + ../../lib/compression/testsuite.o \ ../../lib/charset/testsuite.o \ sddl.o \ ../../lib/tdr/testsuite.o \ diff --git a/source4/torture/local/local.c b/source4/torture/local/local.c index 174596152c..84dca5fcfa 100644 --- a/source4/torture/local/local.c +++ b/source4/torture/local/local.c @@ -46,6 +46,7 @@ torture_local_ndr, torture_local_tdr, torture_local_charset, + torture_local_compression, torture_local_event, torture_local_torture, torture_local_dbspeed, diff --git a/source4/torture/rpc/winreg.c b/source4/torture/rpc/winreg.c index 6c607c0806..d2c6ee493b 100644 --- a/source4/torture/rpc/winreg.c +++ b/source4/torture/rpc/winreg.c @@ -837,8 +837,7 @@ BOOL torture_rpc_winreg(struct torture_context *torture) } for (i = 0; i < ARRAY_SIZE(open_fns); i++) { - if (!test_Open(p, mem_ctx, open_fns[i].name, open_fns[i].fn)) - ret = False; + ret &= test_Open(p, mem_ctx, open_fns[i].name, open_fns[i].fn); } talloc_free(mem_ctx); |