[FFmpeg-cvslog] [ffmpeg-fateserver] branch master updated. 83c7a97 Fix querying of architecture for entries without subarch string
gitolite
ffmpeg-cvslog at ffmpeg.org
Tue Jun 10 20:12:01 CEST 2014
The branch, master has been updated
via 83c7a97760f260de673544edc22f522823628e35 (commit)
from 31009cd45db46e256e267599ebd5306d86ae6bde (commit)
- Log -----------------------------------------------------------------
commit 83c7a97760f260de673544edc22f522823628e35
Author: Timothy Gu <timothygu99 at gmail.com>
AuthorDate: Tue Jun 10 19:56:06 2014 +0200
Commit: Michael Niedermayer <michaelni at gmx.at>
CommitDate: Tue Jun 10 19:56:13 2014 +0200
Fix querying of architecture for entries without subarch string
This fixes, for example, querying aarch64.
Signed-off-by: Timothy Gu <timothygu99 at gmail.com>
Reviewed-by: Derek Buitenhuis <derek.buitenhuis at gmail.com>
Signed-off-by: Michael Niedermayer <michaelni at gmx.at>
diff --git a/index.cgi b/index.cgi
index 5de0efd..18548a6 100755
--- a/index.cgi
+++ b/index.cgi
@@ -46,14 +46,13 @@ for my $slot (@slots) {
next if time - parse_date($$rep{date}) > $hidden_age;
my $not_matched = 0;
-
+ $$rep{subarch} = $$rep{arch} if not $$rep{subarch};
for my $this_query (@queries) {
my ($type, $text) = split(/:/, $this_query, 2);
$not_matched = 1 if ($$rep{$type} ne $text);
}
next if $not_matched;
- $$rep{subarch} = $$rep{arch} if not $$rep{subarch};
push @reps, $rep;
if ($$rep{npass} == $$rep{ntests} and !$$rep{status}) {
$allpass++;
-----------------------------------------------------------------------
Summary of changes:
index.cgi | 3 +--
1 files changed, 1 insertions(+), 2 deletions(-)
hooks/post-receive
--
More information about the ffmpeg-cvslog
mailing list