Skip to content
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

[lldb] Speed up FindInMemory tests #111951

Merged
merged 2 commits into from
Oct 18, 2024

Commits on Oct 11, 2024

  1. [lldb] Speed up FindInMemory tests

    A memory region can be relatively large. Searching for a value in the
    entire region is time-consuming, especially when running tests against
    a remote target, because the memory data is transferred in small chunks
    over a relatively slow GDB Remote Protocol. The patch limits the address
    range to be searched to 2K, which seems sufficient for these tests. In
    my setup, for local runs, these tests now take half the time they did
    before the patch. For a remote target, the improvement is even more
    significant.
    igorkudrin committed Oct 11, 2024
    Configuration menu
    Copy the full SHA
    e027444 View commit details
    Browse the repository at this point in the history

Commits on Oct 12, 2024

  1. Configuration menu
    Copy the full SHA
    f0895aa View commit details
    Browse the repository at this point in the history