X-Git-Url: https://git.sesse.net/?p=movit;a=blobdiff_plain;f=Makefile;h=b9b66f4b8aa47fde0606c1f7c0978a593f39512a;hp=3d0a87cc47750e6d4da41d0b4036da4f438deeeb;hb=ba6838ec8b6fb972ccda17b3e6be6e793a4157a3;hpb=5e05605a85a15944b95d7000745446756cdcbfa8 diff --git a/Makefile b/Makefile index 3d0a87c..b9b66f4 100644 --- a/Makefile +++ b/Makefile @@ -35,6 +35,8 @@ TESTS += overlay_effect_test TESTS += gamma_expansion_effect_test TESTS += gamma_compression_effect_test TESTS += colorspace_conversion_effect_test +TESTS += alpha_multiplication_effect_test +TESTS += alpha_division_effect_test TESTS += saturation_effect_test TESTS += deconvolution_sharpen_effect_test TESTS += blur_effect_test @@ -60,6 +62,8 @@ LIB_OBJS += white_balance_effect.o LIB_OBJS += gamma_expansion_effect.o LIB_OBJS += gamma_compression_effect.o LIB_OBJS += colorspace_conversion_effect.o +LIB_OBJS += alpha_multiplication_effect.o +LIB_OBJS += alpha_division_effect.o LIB_OBJS += saturation_effect.o LIB_OBJS += vignette_effect.o LIB_OBJS += mirror_effect.o @@ -112,11 +116,14 @@ clean: $(RM) -r movit.info coverage/ check: $(TESTS) - FAIL=0; \ + FAILED_TESTS=""; \ for TEST in $(TESTS); do \ - ./$$TEST || FAIL=1; \ + ./$$TEST || FAILED_TESTS="$$TEST $$FAILED_TESTS"; \ done; \ - exit $$FAIL + if [ "$$FAILED_TESTS" ]; then \ + echo Failed tests: $$FAILED_TESTS; \ + exit 1; \ + fi # You need to build with COVERAGE=1 to use this target. coverage: check