Skip to content

Commit

Permalink
Regression test for issue #54477.
Browse files Browse the repository at this point in the history
I removed the original file that more completely captured the original
crate's tests, as its source crate
(https://crates.io/crates/collection) is licensed under GPL3, and I
suspect that license is not loose enough for me to put into our repo
under our MIT/Apache licensing.

(Would it be an option to attach the GPL3 licesne to just the one
test? Probably. But do I want to bother with it that that point?
Nope!)
  • Loading branch information
pnkfelix committed Oct 30, 2018
1 parent d586d5d commit 465cd66
Showing 1 changed file with 25 additions and 0 deletions.
25 changes: 25 additions & 0 deletions src/test/run-pass/issues/issue-54477-reduced-2.rs
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
// rust-lang/rust#54477: runtime bug in the VecDeque library that was
// exposed by this test case, derived from test suite of crates.io
// `collection` crate.

use std::collections::VecDeque;

fn main() {
let mut vecdeque_13 = VecDeque::from(vec![ ]);
let mut vecdeque_29 = VecDeque::from(vec![ 0 ]);
vecdeque_29.insert(0, 30 );
vecdeque_29.insert(1, 31 );
vecdeque_29.insert(2, 32 );
vecdeque_29.insert(3, 33 );
vecdeque_29.insert(4, 34 );
vecdeque_29.insert(5, 35 );
// println!("vecdeque_13: {:?}", vecdeque_13);
// println!("vecdeque_29: {:?}", vecdeque_29);

// println!("Invoking: `vecdeque_13.append(&mut vecdeque_29)`");
vecdeque_13.append(&mut vecdeque_29);

// println!("vecdeque_13: {:?}", vecdeque_13);

assert_eq!(vecdeque_13, VecDeque::from(vec![30, 31, 32, 33, 34, 35, 0]));
}

0 comments on commit 465cd66

Please sign in to comment.