Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Rollup of 7 pull requests #63408

Merged
merged 24 commits into from
Aug 9, 2019
Merged
Changes from 1 commit
Commits
Show all changes
24 commits
Select commit Hold shift + click to select a range
8ae8bc2
Fix various issues with making items reachable through macros
matthewjasper Aug 5, 2019
7b41fd2
Make some items in core::unicode private
matthewjasper Aug 5, 2019
d9d9246
Remove gensym from format_args
matthewjasper Aug 5, 2019
642ee70
Add test for issue-43623
JohnTitor Aug 8, 2019
55f15d7
Add test for issue-44405
JohnTitor Aug 8, 2019
fd7ac6b
Deprecate `try!` macro
Jun 23, 2019
90fa790
Postpone deprecating try! until 1.39.0
tesuji Jul 15, 2019
6842316
Allow deprecated try macro in test crates
tesuji Jul 14, 2019
e9ee2cb
Improve test output for libcore/time
ohsayan Aug 9, 2019
623debf
Improve tests for libcore/slice
ohsayan Aug 9, 2019
33445ae
Improve tests for liballoc/btree/set
ohsayan Aug 9, 2019
fb3a013
Merge pull request #1 from rust-lang/master
ohsayan Aug 9, 2019
c5687e3
enable flt2dec tests in Miri
RalfJung Aug 9, 2019
c7e16c5
Check links on all platforms when running locally
mati865 Aug 6, 2019
29ca428
Miri is really slow
RalfJung Aug 9, 2019
73edef7
reduce some test sizes in Miri
RalfJung Aug 9, 2019
78caca0
explain Miri disabling
RalfJung Aug 9, 2019
03c524e
Rollup merge of #62672 - lzutao:deprecated-try-macro, r=Centril
Centril Aug 9, 2019
a038726
Rollup merge of #62950 - mati865:linkcheck, r=alexcrichton
Centril Aug 9, 2019
714c8ea
Rollup merge of #63114 - matthewjasper:hygienic-format-args, r=petroc…
Centril Aug 9, 2019
7a25162
Rollup merge of #63397 - JohnTitor:add-tests-for-ices, r=Centril
Centril Aug 9, 2019
171e845
Rollup merge of #63403 - sntdevco:master, r=Centril
Centril Aug 9, 2019
14ec32e
Rollup merge of #63404 - RalfJung:flt2dec, r=Centril
Centril Aug 9, 2019
4e3c209
Rollup merge of #63407 - RalfJung:miri-test-sizes, r=Centril
Centril Aug 9, 2019
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
Improve tests for liballoc/btree/set
  • Loading branch information
ohsayan authored Aug 9, 2019
commit 33445aea509cadcd715009c79795d289268daa7c
4 changes: 2 additions & 2 deletions src/liballoc/tests/btree/set.rs
Original file line number Diff line number Diff line change
@@ -10,7 +10,7 @@ fn test_clone_eq() {
m.insert(1);
m.insert(2);

assert!(m.clone() == m);
assert_eq!(m.clone(), m);
}

#[test]
@@ -28,7 +28,7 @@ fn test_hash() {
y.insert(2);
y.insert(1);

assert!(hash(&x) == hash(&y));
assert_eq!(hash(&x), hash(&y));
}

fn check<F>(a: &[i32], b: &[i32], expected: &[i32], f: F)