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