vlc | branch: master | Marvin Scholz <[email protected]> | Wed Apr 1 13:26:50 2020 +0200| [93b1e085536ef933274853470214b63eb2b9f289] | committer: Marvin Scholz
test: md5: fix name of test function The test is not testing config_StringEscape but MD5 hashing. > http://git.videolan.org/gitweb.cgi/vlc.git/?a=commit;h=93b1e085536ef933274853470214b63eb2b9f289 --- 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; } _______________________________________________ vlc-commits mailing list [email protected] https://mailman.videolan.org/listinfo/vlc-commits
