From 0541807adfc05a941067fae34bd70b3fe64d7e39 Mon Sep 17 00:00:00 2001 From: Andrew Tridgell Date: Thu, 14 Sep 2006 11:47:13 +0000 Subject: r18517: I find it less confusing if tests are run in the order they are added. (This used to be commit 3e1844b2b229d6e84436d6c455bef707d0efcafc) --- source4/torture/ui.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'source4/torture') diff --git a/source4/torture/ui.c b/source4/torture/ui.c index 7ebaf2b7e9..50bb2482d7 100644 --- a/source4/torture/ui.c +++ b/source4/torture/ui.c @@ -93,7 +93,7 @@ struct torture_test *torture_tcase_add_test(struct torture_tcase *tcase, test->dangerous = False; test->data = data; - DLIST_ADD(tcase->tests, test); + DLIST_ADD_END(tcase->tests, test, struct torture_test *); return test; } -- cgit