From e6dbc8bae21dd928d7fd5856fd92a7f48763a2b9 Mon Sep 17 00:00:00 2001 From: ShyamsundarR Date: Thu, 7 Dec 2017 15:09:00 -0500 Subject: scripts: Updated FB branch diff script to note SKIPs Skip table updated, to reflect commits that need not be forward ported to master. Change-Id: Id85fa2a27237a0ef15a7c97591fa3a696d7f836c Signed-off-by: ShyamsundarR --- tools/branch-diff.py | 38 ++++++++++++++++++++++++++++++++++++++ 1 file changed, 38 insertions(+) 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) -- cgit