tests: change eina cmdline test names to match api namespaces

Reviewed-by: Stefan Schmidt <stefan@osg.samsung.com>
This commit is contained in:
Mike Blumenkrantz 2018-03-30 15:13:12 -04:00 committed by Stefan Schmidt
parent 910db08a6b
commit 7f54a431a3
1 changed files with 12 additions and 12 deletions

View File

@ -32,17 +32,17 @@
#include "../efl_check.h" #include "../efl_check.h"
static const Efl_Test_Case etc[] = { static const Efl_Test_Case etc[] = {
{ "FixedPoint", eina_test_fp }, { "fp", eina_test_fp },
{ "Inarray", eina_test_inarray }, { "Inarray", eina_test_inarray },
{ "Array", eina_test_array }, { "Array", eina_test_array },
{ "Binary Share", eina_test_binshare }, { "binshare", eina_test_binshare },
{ "String Share", eina_test_stringshare }, { "stringshare", eina_test_stringshare },
{ "UString Share", eina_test_ustringshare }, { "ustringshare", eina_test_ustringshare },
{ "Log", eina_test_log }, { "Log", eina_test_log },
{ "Error", eina_test_error }, { "Error", eina_test_error },
{ "Magic", eina_test_magic }, { "Magic", eina_test_magic },
{ "Inlist", eina_test_inlist }, { "Inlist", eina_test_inlist },
{ "Lazy alloc", eina_test_lalloc }, { "lalloc", eina_test_lalloc },
{ "Main", eina_test_main }, { "Main", eina_test_main },
{ "Counter", eina_test_counter }, { "Counter", eina_test_counter },
{ "Hash", eina_test_hash }, { "Hash", eina_test_hash },
@ -57,19 +57,19 @@ static const Efl_Test_Case etc[] = {
{ "Benchmark", eina_test_benchmark }, { "Benchmark", eina_test_benchmark },
{ "Mempool", eina_test_mempool }, { "Mempool", eina_test_mempool },
{ "Rectangle", eina_test_rectangle }, { "Rectangle", eina_test_rectangle },
{ "Matrix Sparse", eina_test_matrixsparse }, { "MatrixSparse", eina_test_matrixsparse },
{ "Eina Tiler", eina_test_tiler }, { "Tiler", eina_test_tiler },
{ "Eina Strbuf", eina_test_strbuf }, { "Strbuf", eina_test_strbuf },
{ "Eina Binbuf", eina_test_binbuf }, { "Binbuf", eina_test_binbuf },
{ "String", eina_test_str }, { "String", eina_test_str },
{ "Unicode String", eina_test_ustr }, { "ustr", eina_test_ustr },
{ "QuadTree", eina_test_quadtree }, { "QuadTree", eina_test_quadtree },
{ "Sched", eina_test_sched }, { "Sched", eina_test_sched },
{ "Simple Xml Parser", eina_test_simple_xml_parser}, { "Simple Xml Parser", eina_test_simple_xml_parser},
{ "Value", eina_test_value }, { "Value", eina_test_value },
{ "COW", eina_test_cow }, { "COW", eina_test_cow },
{ "Barrier", eina_test_barrier }, { "Barrier", eina_test_barrier },
{ "Tmp String", eina_test_tmpstr }, { "TmpStr", eina_test_tmpstr },
{ "Locking", eina_test_locking }, { "Locking", eina_test_locking },
{ "ABI", eina_test_abi }, { "ABI", eina_test_abi },
{ "Trash", eina_test_trash }, { "Trash", eina_test_trash },
@ -86,7 +86,7 @@ static const Efl_Test_Case etc[] = {
{ "Slice", eina_test_slice }, { "Slice", eina_test_slice },
{ "Free Queue", eina_test_freeq }, { "Free Queue", eina_test_freeq },
{ "Util", eina_test_util }, { "Util", eina_test_util },
{ "Short Lived Strings", eina_test_slstr }, { "slstr", eina_test_slstr },
{ "Vpath", eina_test_vpath }, { "Vpath", eina_test_vpath },
{ NULL, NULL } { NULL, NULL }
}; };