Simplify installation procedure
[cgds.git] / test / main.c
index 7c08f3f..3c2cf04 100644 (file)
@@ -9,12 +9,12 @@ int main(int argc, char** argv)
        t_stack_push_pop_evolved();
        t_stack_copy();
 
-       //file ./t.Heap.c :
-       t_heap_clear();
-       t_heap_size();
-       t_heap_push_pop_basic();
-       t_heap_push_pop_evolved();
-       t_heap_copy();
+       //file ./t.List.c :
+       t_list_clear();
+       t_list_size();
+       t_list_push_pop_basic();
+       t_list_push_pop_evolved();
+       t_list_copy();
 
        //file ./t.Tree.c :
        t_tree_clear();
@@ -23,20 +23,6 @@ int main(int argc, char** argv)
        t_tree_iterate();
        t_tree_copy();
 
-       //file ./t.PriorityQueue.c :
-       t_priorityqueue_clear();
-       t_priorityqueue_size();
-       t_priorityqueue_push_pop_basic();
-       t_priorityqueue_push_pop_evolved();
-       t_priorityqueue_copy();
-
-       //file ./t.List.c :
-       t_list_clear();
-       t_list_size();
-       t_list_push_pop_basic();
-       t_list_push_pop_evolved();
-       t_list_copy();
-
        //file ./t.Vector.c :
        t_vector_clear();
        t_vector_size();
@@ -51,6 +37,13 @@ int main(int argc, char** argv)
        t_queue_push_pop_evolved();
        t_queue_copy();
 
+       //file ./t.Heap.c :
+       t_heap_clear();
+       t_heap_size();
+       t_heap_push_pop_basic();
+       t_heap_push_pop_evolved();
+       t_heap_copy();
+
        //file ./t.BufferTop.c :
        t_buffertop_clear();
        t_buffertop_size();
@@ -58,5 +51,12 @@ int main(int argc, char** argv)
        t_buffertop_push_pop_evolved();
        t_buffertop_copy();
 
+       //file ./t.PriorityQueue.c :
+       t_priorityqueue_clear();
+       t_priorityqueue_size();
+       t_priorityqueue_push_pop_basic();
+       t_priorityqueue_push_pop_evolved();
+       t_priorityqueue_copy();
+
        return 0;
 }