Skip to content

Commit

Permalink
Ran rustfmt
Browse files Browse the repository at this point in the history
  • Loading branch information
pczarn committed Jan 5, 2016
1 parent 72a5bb7 commit 100a469
Showing 1 changed file with 19 additions and 35 deletions.
54 changes: 19 additions & 35 deletions src/libarena/lib.rs
Expand Up @@ -630,11 +630,7 @@ mod tests {
#[bench]
pub fn bench_copy_nonarena(b: &mut Bencher) {
b.iter(|| {
let _: Box<_> = Box::new(Point {
x: 1,
y: 2,
z: 3
});
let _: Box<_> = Box::new(Point { x: 1, y: 2, z: 3 });
})
}

Expand Down Expand Up @@ -676,11 +672,7 @@ mod tests {
for _ in 0..100 {
arena.alloc(|| ());
}
arena.alloc(|| Point {
x: 1,
y: 2,
z: 3,
});
arena.alloc(|| Point { x: 1, y: 2, z: 3 });
}
}

Expand All @@ -690,11 +682,7 @@ mod tests {
for _ in 0..10 {
arena.clear();
for _ in 0..10000 {
arena.alloc(Point {
x: 1,
y: 2,
z: 3,
});
arena.alloc(Point { x: 1, y: 2, z: 3 });
}
}
}
Expand All @@ -705,14 +693,12 @@ mod tests {
for _ in 0..10 {
arena.clear();
for _ in 0..10000 {
arena.alloc(|| Point {
x: 1,
y: 2,
z: 3,
});
arena.alloc(|| Noncopy {
string: "hello world".to_string(),
array: vec![],
arena.alloc(|| Point { x: 1, y: 2, z: 3 });
arena.alloc(|| {
Noncopy {
string: "hello world".to_string(),
array: vec![],
}
});
}
}
Expand All @@ -722,11 +708,7 @@ mod tests {
pub fn test_arena_alloc_bytes() {
let arena = Arena::new();
for i in 0..10000 {
arena.alloc(|| Point {
x: 1,
y: 2,
z: 3,
});
arena.alloc(|| Point { x: 1, y: 2, z: 3 });
for byte in arena.alloc_bytes(i % 42).iter_mut() {
*byte = i as u8;
}
Expand Down Expand Up @@ -754,10 +736,10 @@ mod tests {
for i in 0..10 {
// Arena allocate something with drop glue to make sure it
// doesn't leak.
arena.alloc(|| { Rc::new(i) });
arena.alloc(|| Rc::new(i));
// Allocate something with funny size and alignment, to keep
// things interesting.
arena.alloc(|| { [0u8, 1, 2] });
arena.alloc(|| [0u8, 1, 2]);
}
// Now, panic while allocating
arena.alloc::<Rc<i32>, _>(|| {
Expand All @@ -771,7 +753,7 @@ mod tests {
b.iter(|| {
arena.alloc(Noncopy {
string: "hello world".to_string(),
array: vec!( 1, 2, 3, 4, 5 ),
array: vec![1, 2, 3, 4, 5],
})
})
}
Expand All @@ -781,7 +763,7 @@ mod tests {
b.iter(|| {
let _: Box<_> = Box::new(Noncopy {
string: "hello world".to_string(),
array: vec!( 1, 2, 3, 4, 5 ),
array: vec![1, 2, 3, 4, 5],
});
})
}
Expand All @@ -790,9 +772,11 @@ mod tests {
pub fn bench_noncopy_old_arena(b: &mut Bencher) {
let arena = Arena::new();
b.iter(|| {
arena.alloc(|| Noncopy {
string: "hello world".to_string(),
array: vec!( 1, 2, 3, 4, 5 ),
arena.alloc(|| {
Noncopy {
string: "hello world".to_string(),
array: vec![1, 2, 3, 4, 5],
}
})
})
}
Expand Down

0 comments on commit 100a469

Please sign in to comment.