about summary refs log tree commit diff
path: root/tests/run-make/tools.mk
AgeCommit message (Collapse)AuthorLines
2025-03-02run-make: remove `tools.mk`许杰友 Jieyou Xu (Joe)-209/+0
It has served us well, but it's time to retire the `Makefile` support file since this is no longer needed.
2024-02-25Add synchronization library to run-make flagsChris Denton-2/+2
2023-10-07tests/run-make: Move RUSTC_TEST_OP to tools.mkMartin Nordholts-0/+22
To reduce duplication. A follow-up commit will begin using it in even more places.
2023-08-03Add `internal_features` lintNilstrieb-1/+1
It lints against features that are inteded to be internal to the compiler and standard library. Implements MCP #596. We allow `internal_features` in the standard library and compiler as those use many features and this _is_ the standard library from the "internal to the compiler and standard library" after all. Marking some features as internal wasn't exactly the most scientific approach, I just marked some mostly obvious features. While there is a categorization in the macro, it's not very well upheld (should probably be fixed in another PR). We always pass `-Ainternal_features` in the testsuite About 400 UI tests and several other tests use internal features. Instead of throwing the attribute on each one, just always allow them. There's nothing wrong with testing internal features^^
2023-03-30move `tools.mk` to run-makeJoshua Nelson-0/+187
apparently I missed some tests in the last commit. Rather than having dozens of tests use the long version, use the short version in `run-make` and the long version in `run-make-fulldeps` (which is now only three tests)