s4-torture: Reorder the epmapper tests.
authorAndreas Schneider <asn@samba.org>
Wed, 26 Jan 2011 13:18:15 +0000 (14:18 +0100)
committerGünther Deschner <gd@samba.org>
Thu, 27 Jan 2011 14:28:05 +0000 (15:28 +0100)
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

source4/torture/rpc/epmapper.c

index d5115807bad6a6637657ddc2ade3863498abb034..94e4652acd906608cef0e2b52e95bc57c510c6ff 100644 (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);
+                                  "Map_simple",
+                                  test_Map_simple);
        torture_rpc_tcase_add_test(tcase,
-                                  "Lookup_terminate_search",
-                                  test_Lookup_terminate_search);
+                                  "Map_full",
+                                  test_Map_full);
        torture_rpc_tcase_add_test(tcase,
                                   "Lookup_simple",
                                   test_Lookup_simple);
        torture_rpc_tcase_add_test(tcase,
-                                  "Map_full",
-                                  test_Map_full);
+                                  "Lookup_terminate_search",
+                                  test_Lookup_terminate_search);
        torture_rpc_tcase_add_test(tcase,
-                                  "Map_simple",
-                                  test_Map_simple);
+                                  "Insert_noreplace",
+                                  test_Insert_noreplace);
 
        return suite;
 }