summaryrefslogtreecommitdiff
path: root/source4/torture/smbtorture.c
diff options
context:
space:
mode:
authorJelmer Vernooij <jelmer@samba.org>2010-09-21 20:16:40 -0700
committerJelmer Vernooij <jelmer@samba.org>2010-09-21 22:54:34 -0700
commit0aff42a6e4bd4330c50566a13ecf684486f8e96d (patch)
treeb20fea93dd862b58e289af4e9bf8abb4ba6b4f07 /source4/torture/smbtorture.c
parentea1ed67d15b0b2d70fff638c3c5c79de66312e9c (diff)
downloadsamba-0aff42a6e4bd4330c50566a13ecf684486f8e96d.tar.gz
torture: Remove active_testname variable.
Diffstat (limited to 'source4/torture/smbtorture.c')
-rw-r--r--source4/torture/smbtorture.c3
1 files changed, 0 insertions, 3 deletions
diff --git a/source4/torture/smbtorture.c b/source4/torture/smbtorture.c
index c03d7343187..0f2ca2fcbe5 100644
--- a/source4/torture/smbtorture.c
+++ b/source4/torture/smbtorture.c
@@ -58,7 +58,6 @@ static bool run_matching(struct torture_context *torture,
if (gen_fnmatch(expr, name) == 0) {
*matched = true;
reload_charcnv(torture->lp_ctx);
- torture->active_testname = name;
if (restricted != NULL)
ret &= torture_run_suite_restricted(torture, o, restricted);
else
@@ -72,7 +71,6 @@ static bool run_matching(struct torture_context *torture,
if (gen_fnmatch(expr, name) == 0) {
*matched = true;
reload_charcnv(torture->lp_ctx);
- torture->active_testname = name;
ret &= torture_run_tcase_restricted(torture, t, restricted);
}
for (p = t->tests; p; p = p->next) {
@@ -80,7 +78,6 @@ static bool run_matching(struct torture_context *torture,
if (gen_fnmatch(expr, name) == 0) {
*matched = true;
reload_charcnv(torture->lp_ctx);
- torture->active_testname = name;
ret &= torture_run_test_restricted(torture, t, p, restricted);
}
}