Skip to content

Commit 5606467

Browse files
committed
test: align exclude_allocations fixtures with the real default
Both test() constructors still returned true, so tests exercised a configuration no default run produces.
1 parent 8719737 commit 5606467

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

src/cli/run/mod.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,7 @@ impl RunArgs {
7070
show_full_output: false,
7171
base: None,
7272
cycle_estimation: true,
73-
exclude_allocations: true,
73+
exclude_allocations: false,
7474
profiler_run_args: ProfilerRunArgs {
7575
enable_profiler: false,
7676
enable_perf: None,

src/executor/config.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -236,7 +236,7 @@ impl OrchestratorConfig {
236236
extra_env: HashMap::new(),
237237
fair_sched: false,
238238
cycle_estimation: true,
239-
exclude_allocations: true,
239+
exclude_allocations: false,
240240
}
241241
}
242242
}

0 commit comments

Comments
 (0)