about summary refs log tree commit diff
path: root/src/test/run-make/unstable-flag-required
AgeCommit message (Collapse)AuthorLines
2023-01-11Move /src/test to /testsAlbert Larsan-10/+0
2022-08-23Diagnose missing includes in run-make testsTomasz Miąsko-1/+1
2021-08-24Update testsinquisitivecrystal-3/+0
This updates tests to reflect that `force-warn` is now stable.
2021-07-21Rename force-warns to force-warnRyan Levick-2/+2
2021-06-03Add run-make test testing flag stabilityRyan Levick-0/+3
2021-04-06Fix handling of `--output-format json` flagJoshua Nelson-0/+10
- Don't treat it as deprecated on stable and beta channels. Before, it would give confusing and incorrect output: ``` warning: the 'output-format' flag is considered deprecated | = warning: see issue #44136 <https://github.com/rust-lang/rust/issues/44136> for more information error: json output format isn't supported for doc generation ``` Both of those are wrong: output-format isn't deprecated, and json output is supported. - Require -Z unstable-options for `--output-format json` Previously, it was allowed by default on nightly, which made it hard to realize the flag wouldn't be accepted on beta or stable. Note that this still allows `--output-format html`, which has been stable since 1.0. - Remove unnecessary double-checking of the feature gate when parsing the output format - Add custom run-make test since compiletest passes -Zunstable-options by default