diff options
author | Diego Biurrun <diego@biurrun.de> | 2012-01-25 20:13:17 +0100 |
---|---|---|
committer | Diego Biurrun <diego@biurrun.de> | 2012-01-26 22:44:37 +0100 |
commit | 299ab0fd17a1738e21f3d036128db23ec14b2f3a (patch) | |
tree | 4118ebea50bb36c5ac54f3e97cc893d47ac4c3fa | |
parent | 324e818093194b31112805239efd2ebc69945921 (diff) | |
download | ffmpeg-299ab0fd17a1738e21f3d036128db23ec14b2f3a.tar.gz |
libavutil: Remove pointless file test program.
-rw-r--r-- | libavutil/Makefile | 2 | ||||
-rw-r--r-- | libavutil/file.c | 18 |
2 files changed, 1 insertions, 19 deletions
diff --git a/libavutil/Makefile b/libavutil/Makefile index 6896846081..63d848a343 100644 --- a/libavutil/Makefile +++ b/libavutil/Makefile @@ -75,7 +75,7 @@ OBJS-$(ARCH_ARM) += arm/cpu.o OBJS-$(ARCH_PPC) += ppc/cpu.o OBJS-$(ARCH_X86) += x86/cpu.o -TESTPROGS = adler32 aes avstring base64 cpu crc des eval file fifo lfg lls \ +TESTPROGS = adler32 aes avstring base64 cpu crc des eval fifo lfg lls \ md5 opt parseutils rational sha tree TESTPROGS-$(HAVE_LZO1X_999_COMPRESS) += lzo diff --git a/libavutil/file.c b/libavutil/file.c index 649bb767a0..77aaca0fc0 100644 --- a/libavutil/file.c +++ b/libavutil/file.c @@ -129,21 +129,3 @@ void av_file_unmap(uint8_t *bufptr, size_t size) av_free(bufptr); #endif } - -#ifdef TEST - -#undef printf - -int main(void) -{ - uint8_t *buf; - size_t size; - if (av_file_map("file.c", &buf, &size, 0, NULL) < 0) - return 1; - - buf[0] = 's'; - printf("%s", buf); - av_file_unmap(buf, size); - return 0; -} -#endif |