[vlc-devel] [PATCH v2 01/15] test: md5: fix name of test function
Marvin Scholz
epirat07 at gmail.com
Wed Apr 8 00:04:17 CEST 2020
The test is not testing config_StringEscape but MD5 hashing.
---
src/test/md5.c | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/src/test/md5.c b/src/test/md5.c
index cf111e1d51..f99f2ff3a0 100644
--- a/src/test/md5.c
+++ b/src/test/md5.c
@@ -51,7 +51,7 @@ static const md5_sample_t md5_samples[] =
{ NULL, NULL }
};
-static void test_config_StringEscape()
+static void test_vlc_hash_md5()
{
for( int i = 0; md5_samples[i].psz_string; i++ )
{
@@ -73,7 +73,7 @@ static void test_config_StringEscape()
int main( void )
{
- test_config_StringEscape();
+ test_vlc_hash_md5();
return 0;
}
--
2.24.1 (Apple Git-126)
More information about the vlc-devel
mailing list