-
Notifications
You must be signed in to change notification settings - Fork 108
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
Delete deprecated bench-scripts from agent Makefile #2802
Conversation
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.
If you don't mind a little feature creep, pyproject.toml
needs updating, too, for a similar reason. (The references to binary-search.py
and profile-builder.py
should be removed from Black's exclusions list, and dbench-postprocess
should be removed from the inclusion list.)
@webbnh: I don't mind the feature creep but |
I'll defer to @portante.... 😉 |
I pushed the changes above (and more) and I'll wait for @portante's approval (which came while I was typing...) |
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.
🥳
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.
Yay!...but....
Fixes distributed-system-analysis#2801 PR distributed-system-analysis#2782 deleted deprecated bench scripts from the tree, but did not delete them from the Makefile. Additional problems were uncovered in code review: - pyproject.toml contained a couple of references to no-longer-existing files and a reference to dbench-postprocess. - dbench-postprocess is no longer necessary and is deleted (both the "real" version and the mocked test version). - pbench-agent-default.cfg still contained references to the deleted bench-scripts, so it is cleaned up. docs/pbench-agent.org still mentions dbench (and maybe other deleted bench-scripts) but I declared it out of scope for this PR. We'll take care of it in the documentation cleanup.
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.
🚀
See also PR #2803. |
Fixes #2801
PR #2782 deleted deprecated bench scripts from the tree, but did
not delete them from the Makefile.