-
Notifications
You must be signed in to change notification settings - Fork 85
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Adding the build bisector as a class implementation to be accessed fo…
…r multiple uses Signed-off-by: Tejas Manhas <Tejas.Manhas@ibm.com>
- Loading branch information
Tejas Manhas
authored and
Tejas Manhas
committed
Apr 4, 2024
1 parent
5d428e2
commit f718620
Showing
1 changed file
with
102 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,102 @@ | ||
#build_bisector.py : run the bisector script after taking good commit and bad commit. | ||
|
||
#!/usr/bin/env python3 | ||
# OpenPOWER Automated Test Project | ||
# | ||
# Contributors Listed Below - COPYRIGHT 2024 | ||
# [+] International Business Machines Corp. | ||
# | ||
# | ||
# Licensed under the Apache License, Version 2.0 (the "License"); | ||
# you may not use this file except in compliance with the License. | ||
# You may obtain a copy of the License at | ||
# | ||
# http://www.apache.org/licenses/LICENSE-2.0 | ||
# | ||
# Unless required by applicable law or agreed to in writing, software | ||
# distributed under the License is distributed on an "AS IS" BASIS, | ||
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or | ||
# implied. See the License for the specific language governing | ||
# permissions and limitations under the License. | ||
import json | ||
import os | ||
import re | ||
import unittest | ||
import os | ||
from urllib.parse import urlparse | ||
import subprocess | ||
import OpTestConfiguration | ||
import OpTestLogger | ||
from common.OpTestSystem import OpSystemState | ||
from common.OpTestSOL import OpSOLMonitorThread | ||
from common.OpTestInstallUtil import InstallUtil | ||
from common.Exceptions import CommandFailed | ||
import test_binaries | ||
log = OpTestLogger.optest_logger_glob.get_logger(__name__) | ||
|
||
|
||
class Buil_bisector(unittest.TestCase): | ||
""" | ||
Test case for bisecting the Linux kernel using Git Bisect. | ||
This test downloads the Linux kernel from a specified repository, | ||
configures and compiles it, and then uses Git Bisect to find the | ||
commit that introduced a specific issue. | ||
""" | ||
def setUp(self): | ||
""" | ||
Set up the test environment. | ||
Initializes test parameters and checks required configurations. | ||
""" | ||
self.conf = OpTestConfiguration.conf | ||
self.cv_HOST = self.conf.host() | ||
self.cv_SYSTEM = self.conf.system() | ||
self.connection = self.cv_SYSTEM.cv_HOST.get_ssh_connection() | ||
self.console_thread = OpSOLMonitorThread(1, "console") | ||
self.host_cmd_timeout = self.conf.args.host_cmd_timeout | ||
self.repo = self.conf.args.git_repo | ||
self.repo_reference = self.conf.args.git_repo_reference | ||
self.branch = self.conf.args.git_branch | ||
self.home = self.conf.args.git_home | ||
self.config_path = self.conf.args.git_repoconfigpath | ||
self.config = self.conf.args.git_repoconfig | ||
self.good_commit = self.conf.args.good_commit | ||
self.bad_commit = self.conf.args.bad_commit | ||
self.bisect_script = self.conf.args.bisect_script | ||
self.bisect_category = self.conf.args.bisect_category | ||
self.append_kernel_cmdline = self.conf.args.append_kernel_cmdline | ||
self.linux_path = os.path.join(self.home, "linux") | ||
if self.config_path: | ||
self.config = "olddefconfig" | ||
if not self.repo: | ||
self.fail("Provide git repo of kernel to install") | ||
if not (self.conf.args.host_ip and self.conf.args.host_user and self.conf.args.host_password): | ||
self.fail( | ||
"Provide host ip user details refer, --host-{ip,user,password}") | ||
|
||
def get_email(self, commit_id): | ||
try : | ||
self.connection.run_command("git config --global color.ui true") | ||
result = self.connection.run_command("git show --format=%ce {} | sed -r 's/\x1B\[[0-9:]*[JKsu]//g'".format(commit_id)) | ||
email = result[0] | ||
return email | ||
except subprocess.CalledProcessError as e: | ||
return None | ||
|
||
def runTest(self): | ||
self.connection.run_command(" if [ '$(pwd)' != {} ]; then cd {} || exit 1 ; fi ".format(self.linux_path,self.linux_path)) | ||
shallow = self.connection.run_command("git rev-parse --is-shallow-repository") | ||
print(type(shallow[-1])) | ||
if shallow[-1] == True or shallow[-1] == 'true': | ||
self.connection.run_command("git fetch --unshallow",timeout=3000) | ||
makefile_path = os.path.join(self.conf.basedir, "make.sh") | ||
self.cv_HOST.copy_test_file_to_host(makefile_path, dstdir=self.linux_path) | ||
self.connection.run_command("git bisect start") | ||
self.connection.run_command("git bisect good {} ".format(self.good_commit)) | ||
self.connection.run_command(" git bisect bad ") | ||
self.connection.run_command("chmod +x ./make.sh ") | ||
commit = self.connection.run_command(" git bisect run ./make.sh") | ||
badCommit = [word for word in commit if word.endswith("is the first bad commit")] | ||
badCommit= badCommit[0].split()[0] | ||
email = self.get_email(badCommit) | ||
self.connection.run_command("git bisect reset") | ||
return email , badCommit |