compiletest: load supported sanitizers from target spec#115695
compiletest: load supported sanitizers from target spec#115695bors merged 4 commits intorust-lang:masterfrom
Conversation
|
r? @oli-obk (rustbot has picked a reviewer for you, use r? to override) |
This comment has been minimized.
This comment has been minimized.
ee54cfc to
a6cbb5c
Compare
dd69dc8 to
7f85c99
Compare
| fn channel(&mut self, s: &str) -> &mut Self { | ||
| self.channel = Some(s.to_owned()); | ||
| self | ||
| } | ||
|
|
||
| fn host(&mut self, s: &str) -> &mut Self { | ||
| self.host = Some(s.to_owned()); | ||
| self | ||
| } | ||
|
|
||
| fn target(&mut self, s: &str) -> &mut Self { | ||
| self.target = Some(s.to_owned()); | ||
| self | ||
| } | ||
|
|
||
| fn stage_id(&mut self, s: &str) -> &mut Self { | ||
| self.stage_id = Some(s.to_owned()); | ||
| self | ||
| } | ||
|
|
||
| fn llvm_version(&mut self, s: &str) -> &mut Self { | ||
| self.llvm_version = Some(s.to_owned()); | ||
| self | ||
| } | ||
|
|
||
| fn git_hash(&mut self, b: bool) -> &mut Self { | ||
| self.git_hash = b; | ||
| self | ||
| } | ||
|
|
||
| fn system_llvm(&mut self, s: bool) -> &mut Self { | ||
| self.system_llvm = s; | ||
| self | ||
| } |
There was a problem hiding this comment.
You could derive all these similarly to how I did it in https://github.com/rust-lang/rust/pull/114104/files
|
☔ The latest upstream changes (presumably #115644) made this pull request unmergeable. Please resolve the merge conflicts. |
7f85c99 to
34c248d
Compare
|
@bors r+ |
…zers, r=oli-obk compiletest: load supported sanitizers from target spec
This comment has been minimized.
This comment has been minimized.
|
💔 Test failed - checks-actions |
|
@bors r+ |
…zers, r=oli-obk compiletest: load supported sanitizers from target spec
This comment has been minimized.
This comment has been minimized.
|
💔 Test failed - checks-actions |
c4c4766 to
a145a61
Compare
a145a61 to
9090ed8
Compare
|
Updated a few more codgen tests. @bors r=oli-obk |
…zers, r=oli-obk compiletest: load supported sanitizers from target spec
|
💔 Test failed - checks-actions |
|
@bors retry failed without logs |
|
☀️ Test successful - checks-actions |
|
Finished benchmarking commit (55b5c7b): comparison URL. Overall result: ✅ improvements - no action needed@rustbot label: -perf-regression Instruction countThis is a highly reliable metric that was used to determine the overall result at the top of this comment.
Max RSS (memory usage)ResultsThis is a less reliable metric that may be of interest but was not used to determine the overall result at the top of this comment.
CyclesThis benchmark run did not return any relevant results for this metric. Binary sizeThis benchmark run did not return any relevant results for this metric. Bootstrap: 634.258s -> 634.016s (-0.04%) |
No description provided.