]> git.sesse.net Git - vlc/commitdiff
Move MD5 test to src/
authorRémi Denis-Courmont <remi@remlab.net>
Sun, 27 Nov 2011 11:55:34 +0000 (13:55 +0200)
committerRémi Denis-Courmont <remi@remlab.net>
Sun, 27 Nov 2011 11:56:21 +0000 (13:56 +0200)
src/test/Makefile.am
src/test/md5.c [moved from test/src/misc/md5.c with 90% similarity]
test/Makefile.am

index 215029b6ba0714e3d7a4f2f04f1ef0ee9b7a9048..71f67681dcb2b651adc8aa4b2b640f2b0d8ac5a6 100644 (file)
@@ -4,6 +4,7 @@ check_PROGRAMS = \
        test_block \
        test_dictionary \
        test_i18n_atof \
+       test_md5 \
        test_timer \
        test_url \
        test_utf8 \
@@ -22,6 +23,7 @@ test_block_DEPENDENCIES =
 
 test_dictionary_SOURCES = dictionary.c
 test_i18n_atof_SOURCES = i18n_atof.c
+test_md5_SOURCES = md5.c
 test_timer_SOURCES = timer.c
 test_url_SOURCES = url.c
 test_utf8_SOURCES = utf8.c
similarity index 90%
rename from test/src/misc/md5.c
rename to src/test/md5.c
index 20141643ec3ce31504039d0ee693f649e703930b..2f829068bbdb9d80c6b582db11de633389d3c5d3 100644 (file)
  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, USA.
  *****************************************************************************/
 
+#ifdef HAVE_CONFIG_H
+# include <config.h>
+#endif
+
 #include <stdlib.h>
 #include <string.h>
 
-#include "../../libvlc/test.h"
-
 #include <vlc_common.h>
 #include <vlc_md5.h>
 
@@ -60,15 +62,18 @@ static void test_config_StringEscape()
         EndMD5( &md5 );
         char * psz_hash = psz_md5_hash( &md5 );
 
-        printf( "Output: %s, Expected: %s\n", psz_hash, md5_samples[i].psz_md5 );
-        assert( !strcmp( psz_hash, md5_samples[i].psz_md5 ) );
+        if( strcmp( psz_hash, md5_samples[i].psz_md5 ) )
+        {
+            printf( "Output: %s\nExpected: %s\n", psz_hash,
+                    md5_samples[i].psz_md5 );
+            abort();
+        }
         free( psz_hash );
     }
 }
 
 int main( void )
 {
-    log( "Testing md5 calculation\n" );
     test_config_StringEscape();
 
     return 0;
index 86e2b615531ffdcdd837ce51e4a8fd22dbdff5ab..338c0740a7bf6390251a4ca182294779edeba139 100644 (file)
@@ -18,7 +18,6 @@ check_PROGRAMS = \
        test_libvlc_media_list \
        test_libvlc_media_player \
        test_src_config_chain \
-       test_src_misc_md5 \
        test_src_misc_variables \
         $(NULL)
 
@@ -73,8 +72,6 @@ test_src_misc_variables_SOURCES = src/misc/variables.c
 test_src_misc_variables_LDADD = $(LIBVLCCORE) $(LIBVLC)
 test_src_config_chain_SOURCES = src/config/chain.c
 test_src_config_chain_LDADD = $(LIBVLCCORE)
-test_src_misc_md5_SOURCES = src/misc/md5.c
-test_src_misc_md5_LDADD = $(LIBVLCCORE)
 
 checkall:
        $(MAKE) check_PROGRAMS="$(check_PROGRAMS) $(EXTRA_PROGRAMS)" check