Skip to content
Merged
Changes from 1 commit
Commits
Show all changes
29 commits
Select commit Hold shift + click to select a range
36bcbc3
Add FromStr impl for NonZero types
hellow554 Feb 25, 2019
ce30d4e
replaced nonzeroparseerror with regular interror
hellow554 Feb 27, 2019
912ad68
fixed nonzero tests
hellow554 Feb 28, 2019
ad240ea
add feature flag to test
hellow554 Feb 28, 2019
7330525
fixed tests again
hellow554 Feb 28, 2019
f4742f4
Add def getting methods to librustc/ty/context
Mar 15, 2019
6648385
rustc: Update linker flavor inference from filename
alexcrichton Mar 19, 2019
0e94541
rustc: Allow using `clang` for wasm32 targets
alexcrichton Mar 19, 2019
8ea435c
ffi: rename VaList::copy to VaList::with_copy
dlrobertson Mar 22, 2019
3eb4eae
Fixes #59361
peterjoel Mar 22, 2019
02b8533
Add a way to track Rustfix UI test coverage
phansch Mar 24, 2019
695dfe7
compiletest: make path normalization smarter
euclio Mar 13, 2019
d485ebf
Fix two bootstrap tests
phansch Mar 25, 2019
98d7c54
s/lints/diagnostics
phansch Mar 25, 2019
d808bd4
Save coverage file in build_base path, not /tmp
phansch Mar 25, 2019
4bad56e
When moving out of a for loop head, suggest borrowing it in nll mode
estebank Mar 26, 2019
0b7b454
Combine input and eval_always query types
Zoxc Mar 10, 2019
629e3a3
Make crate_variances a regular query
Zoxc Mar 14, 2019
8f3e862
fixed shift overflow
hellow554 Mar 28, 2019
f90ac4f
Rollup merge of #58717 - hellow554:nonzero_parse, r=oli-obk
Centril Mar 28, 2019
edad34b
Rollup merge of #59091 - Zoxc:eval_always, r=michaelwoerister
Centril Mar 28, 2019
4720fca
Rollup merge of #59216 - stepnivlk:type_dependent_defs-wrappers, r=ol…
Centril Mar 28, 2019
f6d2a3f
Rollup merge of #59318 - alexcrichton:check-for-clang, r=michaelwoeri…
Centril Mar 28, 2019
9ca8f6a
Rollup merge of #59320 - alexcrichton:wasm-clang, r=sanxiyn
Centril Mar 28, 2019
f591d25
Rollup merge of #59363 - peterjoel:issue_59361_edition_opt_shortlist,…
Centril Mar 28, 2019
a92d689
Rollup merge of #59371 - dlrobertson:rename_va_list_copy, r=joshtriplett
Centril Mar 28, 2019
b75b165
Rollup merge of #59398 - phansch:rustfix_coverage, r=oli-obk
Centril Mar 28, 2019
06a9196
Rollup merge of #59408 - euclio:compiletest-normalization, r=oli-obk
Centril Mar 28, 2019
0f26958
Rollup merge of #59429 - estebank:for-loop-move-nll, r=petrochenkov
Centril Mar 28, 2019
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
s/lints/diagnostics
Not all suggestions come from lints
  • Loading branch information
phansch committed Mar 25, 2019
commit 98d7c5463b4f8099d7e1e50087deaa195589294f
4 changes: 2 additions & 2 deletions src/tools/compiletest/src/common.rs
Original file line number Diff line number Diff line change
Expand Up @@ -246,8 +246,8 @@ pub struct Config {
pub compare_mode: Option<CompareMode>,

/// If true, this will generate a coverage file with UI test files that run `MachineApplicable`
/// lints but are missing `run-rustfix` annotations. The generated coverage file is created in
/// `/tmp/rustfix_missing_coverage.txt`
/// diagnostics but are missing `run-rustfix` annotations. The generated coverage file is
/// created in `/tmp/rustfix_missing_coverage.txt`
pub rustfix_coverage: bool,

// Configuration for various run-make tests frobbing things like C compilers
Expand Down