The branch, master has been updated via e8b609c0515c6574a9bd4a0a5edd5f8f7482dc4d (commit) from ade2ddcbe85947d245543d0bb3b94ce67295ab79 (commit)
- Log ----------------------------------------------------------------- commit e8b609c0515c6574a9bd4a0a5edd5f8f7482dc4d Author: fate <f...@ffmpeg.org> AuthorDate: Tue Jan 21 10:42:26 2020 +0100 Commit: Nicolas George <geo...@nsup.org> CommitDate: Sun Aug 29 19:01:24 2021 +0200 old local changes put these in a commit for easier organization, iam not the author of many of these, i do not know who made some of them diff --git a/FATE.pm b/FATE.pm index df45f4a..b7d7260 100644 --- a/FATE.pm +++ b/FATE.pm @@ -373,6 +373,7 @@ sub head2 { <li><a href="#">Developers</a> <ul> <li><a href="https://ffmpeg.org/download.html#get-sources">Source Code</a> + <li><a href="https://ffmpeg.org/developer.html#Contributing">Contribute</a></li> <li><a href="/">FATE</a></li> <li><a href="http://coverage.ffmpeg.org">Code Coverage</a></li> </ul> diff --git a/fate-recv.sh b/fate-recv.sh index 75161d7..f0a4d5b 100755 --- a/fate-recv.sh +++ b/fate-recv.sh @@ -43,6 +43,12 @@ if [ $version -eq 1 ]; then branch=$(echo "$branch" | sed 's,^release/,v,') fi +test -e "$FATEDIR/branches" || touch "$FATEDIR/branches" +grep -q "^$branch$" "$FATEDIR/branches" || \ + [ "$branch" = 'master' ] || \ + (echo "$branch" >>"$FATEDIR/branches" && \ + echo "Setting up new branch $branch" >&2) + test -n "$date" && test -n "$slot" || die "Invalid report header" slotdir=$FATEDIR/$slot @@ -52,6 +58,7 @@ if [ -d "$slotdir" ]; then owner=$(cat "$slotdir/owner") test "$owner" = "$FATE_USER" || die "Slot $slot owned by somebody else" else + echo "$slot" >> /home/fate/newslots mkdir "$slotdir" echo "$FATE_USER" >"$slotdir/owner" fi @@ -75,7 +82,11 @@ exec <&- >&- upass(){ read pname pdate prev || return 0 + # Because we `sort`ed the input before passing it to upass, same tests + # always in couplets in the order of new to old. while read lname ldate lrev; do + # If the second line describes the same test, discard it because it's + # the old result. test "$lname" != "$pname" && echo "$pname:$pdate:$prev" pname=$lname pdate=$ldate @@ -94,7 +105,7 @@ fi unset IFS -nwarn=$(grep -Eci '\<warning\>' compile.log) || true +nwarn=$(grep -Eci '\<warning\>' compile.log) || nwarn=0 echo "stats:$ntest:$npass:$nwarn" >>summary @@ -108,3 +119,6 @@ rm -f $slotdir/previous test -e $slotdir/latest && mv $slotdir/latest $slotdir/previous ln -s $date $slotdir/latest cp lastpass ${lastpass}.new && mv ${lastpass}.new $lastpass + +# /home/fate/.nvm/versions/node/v4.3.1/bin/node /home/fate/mongo-experiments/process/migrate.js "$slot" "$date" "$date" +# /home/fate/.nvm/versions/node/v4.3.1/bin/node /home/fate/mongo-experiments/process/link2.js "$slot" ----------------------------------------------------------------------- Summary of changes: FATE.pm | 1 + fate-recv.sh | 16 +++++++++++++++- 2 files changed, 16 insertions(+), 1 deletion(-) hooks/post-receive -- _______________________________________________ ffmpeg-cvslog mailing list ffmpeg-cvslog@ffmpeg.org https://ffmpeg.org/mailman/listinfo/ffmpeg-cvslog To unsubscribe, visit link above, or email ffmpeg-cvslog-requ...@ffmpeg.org with subject "unsubscribe".