[FFmpeg-devel] [PATCHv6] fate/integer.c: Connect test to fuzzer

2021-05-30 Thread Vedaa
tools/target_io_dem_fuzzer.o: tools/target_dem_fuzzer.c $(COMPILE_C) -DIO_FLAT=0 +tools/target_int_fuzzer.o: tools/target_int_fuzzer.c + $(COMPILE_C) + OUTDIRS += tools clean:: diff --git a/tools/target_int_fuzzer.c b/tools/target_int_fuzzer.c new file mode 100644 index 00..f2ec52bb0

[FFmpeg-devel] [PATCHv5] fate/integer.c: Connect test to fuzzer

2021-05-17 Thread Vedaa
$(COMPILE_C) -DIO_FLAT=0 +tools/target_int_fuzzer.o: tools/target_int_fuzzer.c + $(COMPILE_C) + OUTDIRS += tools clean:: diff --git a/tools/target_int_fuzzer.c b/tools/target_int_fuzzer.c new file mode 100644 index 00..929ae7fae9 --- /dev/null +++ b/tools/target_int_fuzzer.c

[FFmpeg-devel] [PATCH] fate/integer.c: Connect test to fuzzer

2021-05-15 Thread Vedaa
+= tools clean:: diff --git a/tools/target_int_fuzzer.c b/tools/target_int_fuzzer.c new file mode 100644 index 00..e3f72d3356 --- /dev/null +++ b/tools/target_int_fuzzer.c @@ -0,0 +1,39 @@ +/* + * Copyright (c) 2021 Vedaa + * + * This file is part of FFmpeg. + * + * FFmpeg is free soft

[FFmpeg-devel] [PATCHv3] fate/integer.c: Connect test to fuzzer

2021-05-07 Thread Vedaa
tools/target_int_fuzzer.c + $(COMPILE_C) + OUTDIRS += tools clean:: diff --git a/tools/target_int_fuzzer.c b/tools/target_int_fuzzer.c new file mode 100644 index 00..fb1fe11910 --- /dev/null +++ b/tools/target_int_fuzzer.c @@ -0,0 +1,35 @@ +/* + * Copyright (c) 2021 Vedaa + * +

[FFmpeg-devel] [PATCHv2] fate/integer.c: Connect test to fuzzer

2021-05-06 Thread Vedaa
Hi, I have made the requisite changes. --- Makefile | 2 ++ libavutil/tests/integer.c | 21 ++- libavutil/tests/integer.h | 43 +++ tools/Makefile| 3 +++ tools/target_int_fuzzer.c | 35

[FFmpeg-devel] [PATCH] fate/integer.c: Connect test to fuzzer

2021-05-03 Thread Vedaa
Hi, I am applying for GSoC '21. I have attempted to connect fate-integer to the fuzzer by using a header file with the test function to ensure code reusability. However, the linker is unable to link the function definiton. What changes should I make to properly link the function? ---