]> git.lizzy.rs Git - rust.git/blob - src/test/run-pass/issue-13259-windows-tcb-trash.rs
5c5282da06b8b1041331539607346b1f64035be8
[rust.git] / src / test / run-pass / issue-13259-windows-tcb-trash.rs
1 // Copyright 2014 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 #![feature(libc)]
12
13 extern crate libc;
14
15 #[cfg(windows)]
16 mod imp {
17     use libc::{c_void, LPVOID, DWORD};
18     use libc::types::os::arch::extra::LPWSTR;
19
20     extern "system" {
21         fn FormatMessageW(flags: DWORD,
22                           lpSrc: LPVOID,
23                           msgId: DWORD,
24                           langId: DWORD,
25                           buf: LPWSTR,
26                           nsize: DWORD,
27                           args: *const c_void)
28                           -> DWORD;
29     }
30
31     pub fn test() {
32         let mut buf: [u16; 50] = [0; 50];
33         let ret = unsafe {
34             FormatMessageW(0x1000, 0 as *mut c_void, 1, 0x400,
35                            buf.as_mut_ptr(), buf.len() as u32, 0 as *const c_void)
36         };
37         // On some 32-bit Windowses (Win7-8 at least) this will panic with segmented
38         // stacks taking control of pvArbitrary
39         assert!(ret != 0);
40     }
41 }
42
43 #[cfg(not(windows))]
44 mod imp {
45     pub fn test() { }
46 }
47
48 fn main() {
49     imp::test()
50 }