]> git.lizzy.rs Git - rust.git/blob - src/test/run-pass/swap-overlapping.rs
auto merge of #6536 : kud1ing/rust/patch-1, r=brson
[rust.git] / src / test / run-pass / swap-overlapping.rs
1 // Copyright 2013 The Rust Project Developers. See the COPYRIGHT
2 // file at the top-level directory of this distribution and at
3 // http://rust-lang.org/COPYRIGHT.
4 //
5 // Licensed under the Apache License, Version 2.0 <LICENSE-APACHE or
6 // http://www.apache.org/licenses/LICENSE-2.0> or the MIT license
7 // <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your
8 // option. This file may not be copied, modified, or distributed
9 // except according to those terms.
10
11 // Issue #5041 - avoid overlapping memcpy when src and dest of a swap are the same
12
13 use core::util;
14
15 pub fn main() {
16     let mut test = TestDescAndFn {
17         desc: TestDesc {
18             name: DynTestName(~"test"),
19             should_fail: false
20         },
21         testfn: DynTestFn(|| ()),
22     };
23     do_swap(&mut test);
24 }
25
26 fn do_swap(test: &mut TestDescAndFn) {
27     unsafe {
28         util::swap_ptr(ptr::to_mut_unsafe_ptr(test),
29                        ptr::to_mut_unsafe_ptr(test));
30     }
31 }
32
33 pub enum TestName {
34     DynTestName(~str)
35 }
36
37 pub enum TestFn {
38     DynTestFn(~fn()),
39     DynBenchFn(~fn(&mut int))
40 }
41
42 pub struct TestDesc {
43     name: TestName,
44     should_fail: bool
45 }
46
47 pub struct TestDescAndFn {
48     desc: TestDesc,
49     testfn: TestFn,
50 }