remove FTEST marker in test files
authorBenjamin Auder <benjamin.a@mailoo.org>
Fri, 15 May 2015 09:17:47 +0000 (11:17 +0200)
committerBenjamin Auder <benjamin.a@mailoo.org>
Fri, 15 May 2015 09:17:47 +0000 (11:17 +0200)
test/t.BufferTop.c
test/t.Heap.c
test/t.List.c
test/t.PriorityQueue.c
test/t.Queue.c
test/t.Stack.c
test/t.Tree.c
test/t.Vector.c

index f022d13..17492c6 100644 (file)
@@ -3,7 +3,7 @@
 #include "test/helpers.h"
 #include "test/lut.h"
 
-void t_buffertop_clear() //FTEST
+void t_buffertop_clear()
 {
        BufferTop* bt = buffertop_new(int, 10, MIN_T, 2);
 
@@ -19,7 +19,7 @@ void t_buffertop_clear() //FTEST
        buffertop_destroy(bt);
 }
 
-void t_buffertop_size() //FTEST
+void t_buffertop_size()
 {
        BufferTop* bt = buffertop_new(double, 10, MAX_T, 3);
 
@@ -55,7 +55,7 @@ void t_buffertop_size() //FTEST
        buffertop_destroy(bt);
 }
 
-void t_buffertop_push_pop_basic() //FTEST
+void t_buffertop_push_pop_basic()
 {
        BufferTop* bt = buffertop_new(int, 5, MIN_T, 3);
 
@@ -89,7 +89,7 @@ void t_buffertop_push_pop_basic() //FTEST
        buffertop_destroy(bt);
 }
 
-void t_buffertop_push_pop_evolved() //FTEST
+void t_buffertop_push_pop_evolved()
 {
        int n = 10;
 
@@ -136,7 +136,7 @@ void t_buffertop_push_pop_evolved() //FTEST
        buffertop_destroy(bt);
 }
 
-void t_buffertop_copy() //FTEST
+void t_buffertop_copy()
 {
        int n = 10;
 
index 41c0805..e3d6bbc 100644 (file)
@@ -3,7 +3,7 @@
 #include "test/helpers.h"
 #include "test/lut.h"
 
-void t_heap_clear() //FTEST
+void t_heap_clear()
 {
        Heap* h = heap_new(int, MIN_T, 2);
 
@@ -19,7 +19,7 @@ void t_heap_clear() //FTEST
        heap_destroy(h);
 }
 
-void t_heap_size() //FTEST
+void t_heap_size()
 {
        Heap* h = heap_new(double, MAX_T, 3);
 
@@ -40,7 +40,7 @@ void t_heap_size() //FTEST
        heap_destroy(h);
 }
 
-void t_heap_push_pop_basic() //FTEST
+void t_heap_push_pop_basic()
 {
        Heap* h = heap_new(int, MIN_T, 3);
 
@@ -101,7 +101,7 @@ void t_heap_push_pop_basic() //FTEST
        heap_destroy(h);
 }
 
-void t_heap_push_pop_evolved() //FTEST
+void t_heap_push_pop_evolved()
 {
        int n = 10;
 
@@ -148,7 +148,7 @@ void t_heap_push_pop_evolved() //FTEST
        heap_destroy(h);
 }
 
-void t_heap_copy() //FTEST
+void t_heap_copy()
 {
        int n = 10;
 
index b5da4da..51a83b3 100644 (file)
@@ -3,7 +3,7 @@
 #include "test/helpers.h"
 #include "test/lut.h"
 
-void t_list_clear() //FTEST
+void t_list_clear()
 {
        List* L = list_new(int);
 
@@ -17,7 +17,7 @@ void t_list_clear() //FTEST
        list_destroy(L);
 }
 
-void t_list_size() //FTEST
+void t_list_size()
 {
        List* L = list_new(double);
 
@@ -51,7 +51,7 @@ void t_list_size() //FTEST
        list_destroy(L);
 }
 
-void t_list_push_pop_basic() //FTEST
+void t_list_push_pop_basic()
 {
        int n = 10;
 
@@ -84,7 +84,7 @@ void t_list_push_pop_basic() //FTEST
        listI_destroy(li);
 }
 
-void t_list_push_pop_evolved() //FTEST
+void t_list_push_pop_evolved()
 {
        int n = 10;
 
@@ -134,7 +134,7 @@ void t_list_push_pop_evolved() //FTEST
        list_destroy(L);
 }
 
-void t_list_copy() //FTEST
+void t_list_copy()
 {
        int n = 10;
 
index e4f2a75..66417e5 100644 (file)
@@ -3,7 +3,7 @@
 #include "test/helpers.h"
 #include "test/lut.h"
 
-void t_priorityqueue_clear() //FTEST
+void t_priorityqueue_clear()
 {
        PriorityQueue* pq = priorityqueue_new(int, MIN_T, 2);
 
@@ -19,7 +19,7 @@ void t_priorityqueue_clear() //FTEST
        priorityqueue_destroy(pq);
 }
 
-void t_priorityqueue_size() //FTEST
+void t_priorityqueue_size()
 {
        PriorityQueue* pq = priorityqueue_new(double, MAX_T, 3);
 
@@ -40,7 +40,7 @@ void t_priorityqueue_size() //FTEST
        priorityqueue_destroy(pq);
 }
 
-void t_priorityqueue_push_pop_basic() //FTEST
+void t_priorityqueue_push_pop_basic()
 {
        PriorityQueue* pq = priorityqueue_new(int, MIN_T, 3);
 
@@ -101,7 +101,7 @@ void t_priorityqueue_push_pop_basic() //FTEST
        priorityqueue_destroy(pq);
 }
 
-void t_priorityqueue_push_pop_evolved() //FTEST
+void t_priorityqueue_push_pop_evolved()
 {
        int n = 10;
 
@@ -148,7 +148,7 @@ void t_priorityqueue_push_pop_evolved() //FTEST
        priorityqueue_destroy(pq);
 }
 
-void t_priorityqueue_copy() //FTEST
+void t_priorityqueue_copy()
 {
        int n = 10;
 
index cb86b9d..bf095c7 100644 (file)
@@ -3,7 +3,7 @@
 #include "test/helpers.h"
 #include "test/lut.h"
 
-void t_queue_clear() //FTEST
+void t_queue_clear()
 {
        Queue* q = queue_new(int);
 
@@ -17,7 +17,7 @@ void t_queue_clear() //FTEST
        queue_destroy(q);
 }
 
-void t_queue_size() //FTEST
+void t_queue_size()
 {
        Queue* q = queue_new(int);
 
@@ -38,7 +38,7 @@ void t_queue_size() //FTEST
        queue_destroy(q);
 }
 
-void t_queue_push_pop_basic() //FTEST
+void t_queue_push_pop_basic()
 {
        int n = 10;
 
@@ -60,7 +60,7 @@ void t_queue_push_pop_basic() //FTEST
        queue_destroy(q);
 }
 
-void t_queue_push_pop_evolved() //FTEST
+void t_queue_push_pop_evolved()
 {
        int n = 10;
 
@@ -107,7 +107,7 @@ void t_queue_push_pop_evolved() //FTEST
        queue_destroy(q);
 }
 
-void t_queue_copy() //FTEST
+void t_queue_copy()
 {
        int n = 10;
 
index bb879f9..5b99b4f 100644 (file)
@@ -3,7 +3,7 @@
 #include "test/helpers.h"
 #include "test/lut.h"
 
-void t_stack_clear() //FTEST
+void t_stack_clear()
 {
        Stack* s = stack_new(int);
 
@@ -17,7 +17,7 @@ void t_stack_clear() //FTEST
        stack_destroy(s);
 }
 
-void t_stack_size() //FTEST
+void t_stack_size()
 {
        Stack* s = stack_new(int);
 
@@ -38,7 +38,7 @@ void t_stack_size() //FTEST
        stack_destroy(s);
 }
 
-void t_stack_push_pop_basic() //FTEST
+void t_stack_push_pop_basic()
 {
 
        int n = 10;
@@ -61,7 +61,7 @@ void t_stack_push_pop_basic() //FTEST
        stack_destroy(s);
 }
 
-void t_stack_push_pop_evolved() //FTEST
+void t_stack_push_pop_evolved()
 {
        Stack* s = stack_new(StructTest1);
 
@@ -108,7 +108,7 @@ void t_stack_push_pop_evolved() //FTEST
        stack_destroy(s);
 }
 
-void t_stack_copy() //FTEST
+void t_stack_copy()
 {
        int n = 10;
 
index 481508a..131ba15 100644 (file)
@@ -3,7 +3,7 @@
 #include "test/helpers.h"
 #include "test/lut.h"
 
-void t_tree_clear() //FTEST
+void t_tree_clear()
 {
        Tree* t = tree_new(int);
 
@@ -24,7 +24,7 @@ void t_tree_clear() //FTEST
        tree_destroy(t);
 }
 
-void t_tree_size() //FTEST
+void t_tree_size()
 {
        Tree* t = tree_new(int);
 
@@ -47,7 +47,7 @@ void t_tree_size() //FTEST
        tree_destroy(t);
 }
 
-void t_tree_add_remove() //FTEST
+void t_tree_add_remove()
 {
        Tree* t = tree_new(int);
 
@@ -74,7 +74,7 @@ void t_tree_add_remove() //FTEST
        tree_destroy(t);
 }
 
-void t_tree_iterate() //FTEST
+void t_tree_iterate()
 {
        Tree* t = tree_new(int);
 
@@ -103,7 +103,7 @@ void t_tree_iterate() //FTEST
        tree_destroy(t);
 }
 
-void t_tree_copy() //FTEST
+void t_tree_copy()
 {
        Tree* t = tree_new(int);
 
index aa88c3a..8eb32bd 100644 (file)
@@ -3,7 +3,7 @@
 #include "test/helpers.h"
 #include "test/lut.h"
 
-void t_vector_clear() //FTEST
+void t_vector_clear()
 {
        Vector* v = vector_new(int);
        lu_assert(vector_empty(v));
@@ -25,7 +25,7 @@ void t_vector_clear() //FTEST
        vector_destroy(v);
 }
 
-void t_vector_size() //FTEST
+void t_vector_size()
 {
        Vector* v = vector_new(int);
        lu_assert(vector_empty(v));
@@ -47,7 +47,7 @@ void t_vector_size() //FTEST
        vector_destroy(v);
 }
 
-void t_vector_push_pop_basic() //FTEST
+void t_vector_push_pop_basic()
 {
        int n = 10;
 
@@ -80,7 +80,7 @@ void t_vector_push_pop_basic() //FTEST
        vectorI_destroy(vi);
 }
 
-void t_vector_push_pop_evolved() //FTEST
+void t_vector_push_pop_evolved()
 {
        int n = 10;
 
@@ -126,7 +126,7 @@ void t_vector_push_pop_evolved() //FTEST
        vector_destroy(v);
 }
 
-void t_vector_copy() //FTEST
+void t_vector_copy()
 {
        int n = 10;