about summary refs log tree commit diff
path: root/src/tools/suggest-tests
AgeCommit message (Collapse)AuthorLines
2025-07-15Remove current implementation of `./x suggest`Jieyou Xu-237/+0
This is quite a bit of implementation complexity, yet it is quite broken, and we don't have the maintenance bandwidth to address. Remove the current implementation if only to reduce bootstrap's implementation complexity; the `suggest` flow comes with its own set of hacks.
2025-04-23Remove `git_repository` field from `GitConfig`Jakub Beránek-1/+0
It is no longer needed after a recent refactoring.
2025-03-19Simplify `get_git_modified_files`Jakub Beránek-5/+1
It only ever returned `Some`, so `Option` was useless in its return type.
2024-12-30Fix typosericlehong-1/+1
Signed-off-by: ericlehong <193237094+ericlehong@users.noreply.github.com>
2024-11-11move `src/tools/build_helper` into `src/build_helper`onur-ozkan-1/+1
Signed-off-by: onur-ozkan <work@onurozkan.dev>
2024-09-22Reformat using the new identifier sorting from rustfmtMichael Goulet-2/+2
2024-09-09handle `GitConfig` for `tools/suggest-tests`onur-ozkan-0/+1
Signed-off-by: onur-ozkan <work@onurozkan.dev>
2024-07-29Reformat `use` declarations.Nicholas Nethercote-5/+4
The previous commit updated `rustfmt.toml` appropriately. This commit is the outcome of running `x fmt --all` with the new formatting options.
2024-04-28Remove direct dependencies on lazy_static, once_cell and byteorderGeorge Bateman-5/+8
The functionality of all three crates is now available in the standard library.
2024-02-08Suggest pattern tests when modifying exhaustivenessNadrieril-16/+25
2023-11-16Add test suggestions for `mir-opt` and `coverage`Zalathar-0/+11
2023-11-16Support multiple globs in static suggestionsZalathar-13/+15
2023-11-16Allow trailing commas in static suggestionsZalathar-5/+5
2023-11-06rename github_repository to git_repositoryPietro Albini-1/+1
2023-10-24update suggest-testsPietro Albini-2/+19
2023-04-30Fix the test directories suggested by `./x.py suggest`Zalathar-2/+2
The tests that were in `src/test/` have been moved to `tests/`, so the paths given by the suggestion tool should reflect this.
2023-04-09feat: implement basic suggest-tests toolEzra Shaw-0/+200