summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorShyamsundarR <srangana@redhat.com>2017-12-07 15:09:00 -0500
committerShyamsundar Ranganathan <srangana@redhat.com>2018-01-11 23:34:00 +0000
commite6dbc8bae21dd928d7fd5856fd92a7f48763a2b9 (patch)
treec5d149e49271b697ff8cbbd5b81a45086b4bc0f1
parent21e9d065b779841cc161975ff2b66e8ce27dddbe (diff)
scripts: Updated FB branch diff script to note SKIPsrelease-3.8-fb
Skip table updated, to reflect commits that need not be forward ported to master. Change-Id: Id85fa2a27237a0ef15a7c97591fa3a696d7f836c Signed-off-by: ShyamsundarR <srangana@redhat.com>
-rwxr-xr-xtools/branch-diff.py38
1 files changed, 38 insertions, 0 deletions
diff --git a/tools/branch-diff.py b/tools/branch-diff.py
index 9ff083b1c17..7047bdc98ac 100755
--- a/tools/branch-diff.py
+++ b/tools/branch-diff.py
@@ -182,6 +182,10 @@ def update_status_from_exception_table():
# this script, and inviting people to update the MD (say in hackMD), and
# weekly import content from that MD into the table in the script. Hence,
# generating a new MD and posting that up for further work.
+ for row in commit_table:
+ for erow in exception_table:
+ if erow[0] == row[0][:10]:
+ row[7] = "4:SKIP"
return
@@ -243,4 +247,38 @@ rel38fb_start_commit = "d1ac991503b0153b12406d16ce99cd22dadfe0f7"
# notes - typically for exceptions
commit_table = []
+exception_table = [
+ ["69509ee7d2"],
+ ["035a9b742d"],
+ ["6455c52a33"],
+ ["07b32d43b0"],
+ ["627611998b"],
+ ["0f0d00e8a5"],
+ ["49d0f911bd"],
+ ["9aca3f636b"],
+ ["60c6b1729b"],
+ ["493746d10f"],
+ ["9f9da37e3a"],
+ ["233156d6fc"],
+ ["bc02e5423d"],
+ ["9d240c8bff"],
+ ["35cfc2853a"],
+ ["13317ddf8a"],
+ ["c48979df06"],
+ ["11afb5954e"],
+ ["401d1ee7e3"],
+ ["e537c79909"],
+ ["4625432603"],
+ ["5823eec46f"],
+ ["c1a1472168"],
+ ["5f6586ca9c"],
+ ["8c50512d12"],
+ ["9255f94bc2"],
+ ["2f34312030"],
+ ["35cfc2853a"],
+ ["13317ddf8a"],
+ ["c48979df06"],
+ ["4625432603"]
+]
+
main(args.workdir)