diff options
author | Stefan Metzmacher <metze@samba.org> | 2006-01-13 16:44:32 +0000 |
---|---|---|
committer | Gerald (Jerry) Carter <jerry@samba.org> | 2007-10-10 13:51:01 -0500 |
commit | e1622519d3d219d3828c71cda55e87eb36041d43 (patch) | |
tree | 77c5ed53d3e522751718bc71c205c26aeae860cc /source4/torture/nbt | |
parent | 4c117a001fd7c9ca214f15096f4158b94bf7ae3d (diff) | |
download | samba-e1622519d3d219d3828c71cda55e87eb36041d43.tar.gz samba-e1622519d3d219d3828c71cda55e87eb36041d43.tar.bz2 samba-e1622519d3d219d3828c71cda55e87eb36041d43.zip |
r12907: skip some tests for make quicktest in NBT-WINSREPLICATION
metze
(This used to be commit b206c5e87c791ac8f2ecf5b7ef6b2622ad735f54)
Diffstat (limited to 'source4/torture/nbt')
-rw-r--r-- | source4/torture/nbt/winsreplication.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/source4/torture/nbt/winsreplication.c b/source4/torture/nbt/winsreplication.c index a6089fc2db..5b8aa0119a 100644 --- a/source4/torture/nbt/winsreplication.c +++ b/source4/torture/nbt/winsreplication.c @@ -9524,6 +9524,8 @@ BOOL torture_nbt_winsreplication(void) ret &= test_wins_replication(mem_ctx, address); + if (lp_parm_bool(-1, "torture", "quick", False)) goto done; + ctx = test_create_conflict_ctx(mem_ctx, address); if (!ctx) return False; @@ -9532,6 +9534,7 @@ BOOL torture_nbt_winsreplication(void) ret &= test_conflict_owned_released_vs_replica(ctx); ret &= test_conflict_owned_active_vs_replica(ctx); +done: talloc_free(mem_ctx); return ret; |