about summary refs log tree commit diff
path: root/src/test
diff options
context:
space:
mode:
authorbors <bors@rust-lang.org>2014-01-05 11:36:46 -0800
committerbors <bors@rust-lang.org>2014-01-05 11:36:46 -0800
commit4bca7fdf9bdd15a7d008d99dc1252d3c9ffd35be (patch)
tree14b7033fdf1531b4c2ebac7080ff77c9920b0ebb /src/test
parent1d9e66c0ebfb16686ca4f57cbc7af1343ad08251 (diff)
parenteadfe0e3c9b55ec48637d5cdae36eca7421a8159 (diff)
downloadrust-4bca7fdf9bdd15a7d008d99dc1252d3c9ffd35be.tar.gz
rust-4bca7fdf9bdd15a7d008d99dc1252d3c9ffd35be.zip
auto merge of #11313 : alexcrichton/rust/fix-native-failure, r=pcwalton
Diffstat (limited to 'src/test')
-rw-r--r--src/test/run-fail/native-failure.rs22
1 files changed, 22 insertions, 0 deletions
diff --git a/src/test/run-fail/native-failure.rs b/src/test/run-fail/native-failure.rs
new file mode 100644
index 00000000000..11aac2b0fa7
--- /dev/null
+++ b/src/test/run-fail/native-failure.rs
@@ -0,0 +1,22 @@
+// Copyright 2014 The Rust Project Developers. See the COPYRIGHT
+// file at the top-level directory of this distribution and at
+// http://rust-lang.org/COPYRIGHT.
+//
+// Licensed under the Apache License, Version 2.0 <LICENSE-APACHE or
+// http://www.apache.org/licenses/LICENSE-2.0> or the MIT license
+// <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your
+// option. This file may not be copied, modified, or distributed
+// except according to those terms.
+
+// error-pattern:explicit failure
+
+#[no_uv];
+
+extern mod native;
+
+#[start]
+fn start(argc: int, argv: **u8) -> int {
+    do native::start(argc, argv) {
+        fail!();
+    }
+}