]> git.sesse.net Git - vlc/blobdiff - test/native/url.c
Merge branch 'master' into lpcm_encoder
[vlc] / test / native / url.c
index 87fc73c1008c691d681c80f9547a37b8a2211d30..53ed5eada32adcd94d1184a831ef4878affecf70 100644 (file)
  *****************************************************************************/
 
 #include "../pyunit.h"
+#ifdef HAVE_CONFIG_H
+# include "config.h"
+#endif
+
 #include <vlc/vlc.h>
 #include "vlc_url.h"
 
@@ -32,7 +36,6 @@ PyObject * test (conv_t f, const char *in, const char *out)
     printf ("\"%s\" -> \"%s\" ?\n", in, out);
     res = f(in);
     ASSERT( res != NULL, "NULL result" );
-    printf( "\n\"%s\"\n",res );
     ASSERT( strcmp( res, out ) == NULL, "" );
 
     Py_INCREF( Py_None );