-
Notifications
You must be signed in to change notification settings - Fork 13k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Auto merge of #118548 - Enselic:bench-padding, r=thomcc,ChrisDenton
libtest: Fix padding of benchmarks run as tests ### Summary The first commit adds regression tests for libtest padding. The second commit fixes padding for benches run as tests and updates the blessed output of the regression tests to make it clear what effect the fix has on padding. Closes #104092 which is **E-help-wanted** and **regression-from-stable-to-stable** ### More details Before this fix we applied padding _before_ manually doing what `convert_benchmarks_to_tests()` does which affects padding calculations. Instead use `convert_benchmarks_to_tests()` first if applicable and then apply padding afterwards so it becomes correct. Benches should only be padded when run as benches to make it easy to compare the benchmark numbers. Not when run as tests. r? `@ghost` until CI passes.
- Loading branch information
Showing
5 changed files
with
58 additions
and
14 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
# ignore-cross-compile because we run the compiled code | ||
# needs-unwind because #[bench] and -Cpanic=abort requires -Zpanic-abort-tests | ||
include ../tools.mk | ||
|
||
NORMALIZE=sed 's%[0-9,]\{1,\} ns/iter (+/- [0-9,]\{1,\})%?? ns/iter (+/- ??)%' | sed 's%finished in [0-9\.]\{1,\}%finished in ??%' | ||
|
||
all: | ||
$(RUSTC) --test tests.rs | ||
|
||
$(call RUN,tests) --test-threads=1 | $(NORMALIZE) > "$(TMPDIR)"/test.stdout | ||
$(RUSTC_TEST_OP) "$(TMPDIR)"/test.stdout test.stdout | ||
|
||
$(call RUN,tests) --test-threads=1 --bench | $(NORMALIZE) > "$(TMPDIR)"/bench.stdout | ||
$(RUSTC_TEST_OP) "$(TMPDIR)"/bench.stdout bench.stdout |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
|
||
running 4 tests | ||
test short_test_name ... ignored | ||
test this_is_a_really_long_test_name ... ignored | ||
test short_bench_name ... bench: ?? ns/iter (+/- ??) | ||
test this_is_a_really_long_bench_name ... bench: ?? ns/iter (+/- ??) | ||
|
||
test result: ok. 0 passed; 0 failed; 2 ignored; 2 measured; 0 filtered out; finished in ??s | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
|
||
running 4 tests | ||
test short_bench_name ... ok | ||
test short_test_name ... ok | ||
test this_is_a_really_long_bench_name ... ok | ||
test this_is_a_really_long_test_name ... ok | ||
|
||
test result: ok. 4 passed; 0 failed; 0 ignored; 0 measured; 0 filtered out; finished in ??s | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
#![feature(test)] | ||
extern crate test; | ||
|
||
#[test] | ||
fn short_test_name() {} | ||
|
||
#[test] | ||
fn this_is_a_really_long_test_name() {} | ||
|
||
#[bench] | ||
fn short_bench_name(b: &mut test::Bencher) { | ||
b.iter(|| 1); | ||
} | ||
|
||
#[bench] | ||
fn this_is_a_really_long_bench_name(b: &mut test::Bencher) { | ||
b.iter(|| 1); | ||
} |