[MPlayer-cvslog] r36255 - in trunk: Makefile TOOLS/coverity.sh
reimar
subversion at mplayerhq.hu
Thu May 9 10:07:30 CEST 2013
Author: reimar
Date: Thu May 9 10:07:30 2013
New Revision: 36255
Log:
Add script that submits a Coverity scan in an automated way.
Added:
trunk/TOOLS/coverity.sh (contents, props changed)
Modified:
trunk/Makefile
Modified: trunk/Makefile
==============================================================================
--- trunk/Makefile Thu May 9 09:24:34 2013 (r36254)
+++ trunk/Makefile Thu May 9 10:07:30 2013 (r36255)
@@ -766,6 +766,8 @@ all: $(ALL_PRG-yes)
%-rc.o: %.rc
$(WINDRES) -I. $< -o $@
+ffmpeglibs: $(FFMPEGLIBS)
+
$(FFMPEGLIBS): $(FFMPEGFILES) config.h
$(MAKE) -C ffmpeg $(@:ffmpeg/%=%)
Added: trunk/TOOLS/coverity.sh
==============================================================================
--- /dev/null 00:00:00 1970 (empty, because file is newly added)
+++ trunk/TOOLS/coverity.sh Thu May 9 10:07:30 2013 (r36255)
@@ -0,0 +1,8 @@
+rm -rf cov-int MPlayer.tgz
+make distclean
+svn up
+./configure $MPLAYER_COV_OPTS && make -j5 ffmpeglibs
+"$MPLAYER_COV_PATH"/bin/cov-build --dir cov-int make -j5
+tar -czf MPlayer.tgz cov-int
+curl --form file=@MPlayer.tgz --form project=MPlayer --form password="$MPLAYER_COV_PWD" --form email="$MPLAYER_COV_EMAIL" --form version=2.5 --form description="automated run" http://scan5.coverity.com/cgi-bin/upload.py
+
More information about the MPlayer-cvslog
mailing list