From 0aff42a6e4bd4330c50566a13ecf684486f8e96d Mon Sep 17 00:00:00 2001 From: Jelmer Vernooij Date: Tue, 21 Sep 2010 20:16:40 -0700 Subject: torture: Remove active_testname variable. --- source4/torture/smbtorture.c | 3 --- 1 file changed, 3 deletions(-) (limited to 'source4/torture') diff --git a/source4/torture/smbtorture.c b/source4/torture/smbtorture.c index c03d734318..0f2ca2fcbe 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); } } -- cgit