1
0
mirror of https://github.com/samba-team/samba.git synced 2024-12-25 23:21:54 +03:00

s4-torture: Reorder the epmapper tests.

It works like a stack!

Autobuild-User: Günther Deschner <gd@samba.org>
Autobuild-Date: Thu Jan 27 15:28:05 CET 2011 on sn-devel-104
This commit is contained in:
Andreas Schneider 2011-01-26 14:18:15 +01:00 committed by Günther Deschner
parent 3e29bb0b92
commit dbb184ab7b

View File

@ -650,21 +650,22 @@ struct torture_suite *torture_rpc_epmapper(TALLOC_CTX *mem_ctx)
"epmapper",
&ndr_table_epmapper);
/* This is a stack */
torture_rpc_tcase_add_test(tcase,
"Insert_noreplace",
test_Insert_noreplace);
torture_rpc_tcase_add_test(tcase,
"Lookup_terminate_search",
test_Lookup_terminate_search);
torture_rpc_tcase_add_test(tcase,
"Lookup_simple",
test_Lookup_simple);
"Map_simple",
test_Map_simple);
torture_rpc_tcase_add_test(tcase,
"Map_full",
test_Map_full);
torture_rpc_tcase_add_test(tcase,
"Map_simple",
test_Map_simple);
"Lookup_simple",
test_Lookup_simple);
torture_rpc_tcase_add_test(tcase,
"Lookup_terminate_search",
test_Lookup_terminate_search);
torture_rpc_tcase_add_test(tcase,
"Insert_noreplace",
test_Insert_noreplace);
return suite;
}