From f749fe54fa55840cea32ccf498af3b3b0938fbf5 Mon Sep 17 00:00:00 2001 From: Patryk Obara Date: Mon, 30 Sep 2019 22:42:05 +0200 Subject: [PATCH] Increase allowed warnings limit Upstream svn/trunk just introduced a bunch of new warnings. Piggy-back change to interpret "From:" lines in SVN to be imported as proper authorship information. --- scripts/count-bugs.py | 2 +- scripts/count-warnings.py | 2 +- scripts/import-from-svn/import-from-svn.sh | 1 + 3 files changed, 3 insertions(+), 2 deletions(-) diff --git a/scripts/count-bugs.py b/scripts/count-bugs.py index 1b720b54..acf337c2 100755 --- a/scripts/count-bugs.py +++ b/scripts/count-bugs.py @@ -23,7 +23,7 @@ from bs4 import BeautifulSoup # then script will return with status 1. Simply change this line if you # want to set a different limit. # -MAX_ISSUES = 113 +MAX_ISSUES = 120 def summary_values(summary_table): diff --git a/scripts/count-warnings.py b/scripts/count-warnings.py index 6fa3a712..007dc184 100755 --- a/scripts/count-warnings.py +++ b/scripts/count-warnings.py @@ -23,7 +23,7 @@ import sys # then script will return with status 1. Simply change this line if you # want to set a different limit. # -MAX_ISSUES = 357 +MAX_ISSUES = 388 # For recognizing warnings in GCC format in stderr: # diff --git a/scripts/import-from-svn/import-from-svn.sh b/scripts/import-from-svn/import-from-svn.sh index 0e1448a9..06b45c65 100755 --- a/scripts/import-from-svn/import-from-svn.sh +++ b/scripts/import-from-svn/import-from-svn.sh @@ -35,6 +35,7 @@ git_svn_clone_dosbox () { local -r authors_file=$PWD/svn-dosbox-authors git -C "$repo_name" svn fetch \ + --use-log-author \ --authors-file="$authors_file" }