Skip to content
Closed
Show file tree
Hide file tree
Changes from 1 commit
Commits
Show all changes
44 commits
Select commit Hold shift + click to select a range
591584e
Add tests for 'impl Default for [T; N]'
MikailBag May 26, 2020
3313bf6
Skip leak test on targets without panic=unwind
MikailBag May 28, 2020
1bc4e45
Only highlight results via mouseover if mouse has moved
carols10cents Jun 2, 2020
bbb3321
Ensure std benchmarks get tested.
ehuss Jun 8, 2020
724dfba
Clean up some weird command strings
GuillaumeGomez Jun 13, 2020
e32db84
Add rust features to print target features
aszenz Jun 14, 2020
d3ca6fd
Enable static-pie for the x86_64-unknown-linux-musl target
haraldh Jun 15, 2020
9e51008
Complete the std::time documentation to warn about the inconsistencie…
poliorcetics Jun 15, 2020
96f5584
Expand "recursive opaque type" diagnostic
estebank Apr 19, 2020
8f12485
review comments
estebank Jun 15, 2020
268decb
make all uses of ty::Error or ConstKind::Error delay a span bug
mark-i-m May 6, 2020
e855b90
track caller for delay_span_bug
mark-i-m May 26, 2020
5fbef22
warn against 'specialization' feature
RalfJung May 17, 2020
991dfe7
bless all
RalfJung Jun 16, 2020
d1265e7
libcore tests: use min_specialization
RalfJung Jun 16, 2020
1990f97
Disallow loading crates with non-ascii identifier name.
crlf0710 Jun 13, 2020
cfdbbb5
format derives
mark-i-m Jun 16, 2020
4506a35
add header for rust specific feature
aszenz Jun 16, 2020
9f50f84
break long line for formatting
aszenz Jun 16, 2020
457acbd
trim whitespace
aszenz Jun 16, 2020
15cd51a
Mention functions pointers in the documentation
poliorcetics Jun 16, 2020
9f2e8ad
Fix typo in librustc_ast docs
pierwill Jun 17, 2020
e75fa89
Don't imply function pointers are references
poliorcetics Jun 17, 2020
caffb28
add blank line bw sections
aszenz Jun 17, 2020
c9dc73d
Make novel structural match violations a warning
ecstatic-morse Jun 17, 2020
38e921b
Add regression test for #73431
ecstatic-morse Jun 17, 2020
3a1207f
Add issue number to novel violation warning
ecstatic-morse Jun 17, 2020
2da9ca7
Remove duplicate sentence fragment from mem::zeroed doc
dtolnay Jun 18, 2020
4e77214
Improve document for `Result::as_deref(_mut)`
tesuji Jun 18, 2020
09427f6
Rollup merge of #70551 - mark-i-m:ty-err-2, r=varkor
RalfJung Jun 18, 2020
9dfc614
Rollup merge of #70740 - haraldh:static-pie, r=petrochenkov
RalfJung Jun 18, 2020
e9995fe
Rollup merge of #71338 - estebank:recursive-impl-trait, r=nikomatsakis
RalfJung Jun 18, 2020
582b8eb
Rollup merge of #71420 - RalfJung:specialization-incomplete, r=matthe…
RalfJung Jun 18, 2020
594f58e
Rollup merge of #72628 - MikailBag:array-default-tests, r=shepmaster
RalfJung Jun 18, 2020
1a763ea
Rollup merge of #72836 - poliorcetics:std-time-os-specificities, r=sh…
RalfJung Jun 18, 2020
6ca9dce
Rollup merge of #72968 - integer32llc:docs-arrow-keys, r=GuillaumeGomez
RalfJung Jun 18, 2020
d67e993
Rollup merge of #73142 - ehuss:std-benches, r=dtolnay
RalfJung Jun 18, 2020
f8ae9a3
Rollup merge of #73305 - crlf0710:disallow_loading_monsters, r=petroc…
RalfJung Jun 18, 2020
3ff4fac
Rollup merge of #73315 - GuillaumeGomez:clean-up-config-strs, r=kinnison
RalfJung Jun 18, 2020
c51d0ac
Rollup merge of #73346 - aszenz:patch-1, r=cuviper
RalfJung Jun 18, 2020
b87d4a4
Rollup merge of #73425 - poliorcetics:zeroed-functions-pointers, r=dt…
RalfJung Jun 18, 2020
80c2238
Rollup merge of #73428 - pierwill:patch-1, r=jonas-schievink
RalfJung Jun 18, 2020
b3a7b40
Rollup merge of #73446 - ecstatic-morse:issue-73431, r=pnkfelix
RalfJung Jun 18, 2020
e96f154
Rollup merge of #73447 - lzutao:stabilize-result_as_deref, r=dtolnay
RalfJung Jun 18, 2020
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
Ensure std benchmarks get tested.
  • Loading branch information
ehuss committed Jun 8, 2020
commit bbb3321a655da8cd8eaf3ee92927f4ad23b1036b
1 change: 1 addition & 0 deletions src/liballoc/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,7 @@ path = "../liballoc/tests/lib.rs"
[[bench]]
name = "collectionsbenches"
path = "../liballoc/benches/lib.rs"
test = true

[[bench]]
name = "vec_deque_append_bench"
Expand Down
1 change: 1 addition & 0 deletions src/libcore/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,7 @@ path = "../libcore/tests/lib.rs"
[[bench]]
name = "corebenches"
path = "../libcore/benches/lib.rs"
test = true

[dev-dependencies]
rand = "0.7"
Expand Down
5 changes: 5 additions & 0 deletions src/libstd/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -74,3 +74,8 @@ std_detect_dlsym_getauxval = []
threads = 125
# Maximum heap size
heap_size = 0x8000000

[[bench]]
name = "stdbenches"
path = "benches/lib.rs"
test = true