-
Notifications
You must be signed in to change notification settings - Fork 124
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Read dawr with perf interface #2869
base: master
Are you sure you want to change the base?
Read dawr with perf interface #2869
Conversation
Add new test cases for reading single DAWR register and multiple DAWR registers with perf interface Signed-off-by: Akanksha J N <[email protected]>
Opened this PR based on the below comment : #2772 (comment) |
if not any(x in val for x in power_ver): | ||
self.cancel("LPAR on Power10 and above is required for this test.") | ||
if "power10" not in cpu.get_family(): | ||
self.cancel("Test is supported only on IBM POWER10 platform") |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This will revert the power11 support changes. Can you rebase the code?
i = 0 | ||
if self.distro_name == "fedora": | ||
child.sendline('set debuginfod enabled on') | ||
child.expect_exact([pexpect.TIMEOUT, '']) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Same. This will revert code added via trace: Add Fedora Support to trace testing. Can you rebase?
""" | ||
Setting Read/Write watchpoints on two variables using awatch and | ||
executing the program | ||
""" | ||
child, return_value = self.run_cmd('dawr_v2') | ||
i = 0 | ||
if self.distro_name == "fedora": | ||
child.sendline('set debuginfod enabled on') | ||
child.expect_exact([pexpect.TIMEOUT, '']) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Ditto.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@akanksha216 just adopts suggestion from @sacsant so we are good to go
@PraveenPenguin should we ask someone on behalf of Akanksha to resubmit this PR? |
@sacsant i am working to add these changes using the maintainer ACL so we should not drop Akanksha's credit , i closed another PR to take care same |
Add new test cases for reading single DAWR register and multiple DAWR registers with perf interface