Skip to content

Commit ae2726d

Browse files
authored
Merge pull request #270 from oli-obk/more_miri_stuff
Make more things public for miri
2 parents 1422fee + d3a4e52 commit ae2726d

File tree

11 files changed

+27
-10
lines changed

11 files changed

+27
-10
lines changed

CHANGELOG.md

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,18 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
1313

1414
### Changed
1515

16+
* Made more code public for miri to use
17+
18+
### Removed
19+
20+
## [0.26.3] - 2024-09-08
21+
22+
### Added
23+
24+
### Fixed
25+
26+
### Changed
27+
1628
### Removed
1729

1830
## [0.26.2] - 2024-09-08

Cargo.lock

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "ui_test"
3-
version = "0.26.2"
3+
version = "0.26.3"
44
edition = "2021"
55
license = "MIT OR Apache-2.0"
66
description = "A test framework for testing rustc diagnostics output"

src/per_test_config.rs

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -96,7 +96,12 @@ impl TestConfig {
9696
self.comments().flat_map(f).collect()
9797
}
9898

99-
fn apply_custom(&self, cmd: &mut Command, build_manager: &BuildManager) -> Result<(), Errored> {
99+
/// Apply custom flags (aux builds, dependencies, ...)
100+
pub fn apply_custom(
101+
&self,
102+
cmd: &mut Command,
103+
build_manager: &BuildManager,
104+
) -> Result<(), Errored> {
100105
let mut all = BTreeMap::new();
101106
for rev in self.comments.for_revision(self.status.revision()) {
102107
for (&k, flags) in &rev.custom {

tests/integrations/basic-bin/Cargo.lock

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

tests/integrations/basic-fail-mode/Cargo.lock

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

tests/integrations/basic-fail/Cargo.lock

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

tests/integrations/basic/Cargo.lock

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

tests/integrations/cargo-run/Cargo.lock

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

tests/integrations/dep-fail/Cargo.lock

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)