about summary refs log tree commit diff
diff options
context:
space:
mode:
authorLuqman Aden <laden@csclub.uwaterloo.ca>2014-11-11 21:34:18 -0500
committerLuqman Aden <me@luqman.ca>2014-11-17 15:24:34 -0500
commitacd890d96da88d93a2fd0c9b8e37ed111b17a62f (patch)
tree91f77cd96eac4297ca9cbe9c05dd325af7b7df78
parent04a02ffb94314a842a87142042175822d60e58b4 (diff)
downloadrust-acd890d96da88d93a2fd0c9b8e37ed111b17a62f.tar.gz
rust-acd890d96da88d93a2fd0c9b8e37ed111b17a62f.zip
Add tests.
-rw-r--r--src/test/compile-fail/linkage4.rs15
-rw-r--r--src/test/run-make/linkage-attr-on-static/Makefile8
-rw-r--r--src/test/run-make/linkage-attr-on-static/bar.rs25
-rw-r--r--src/test/run-make/linkage-attr-on-static/foo.c7
4 files changed, 55 insertions, 0 deletions
diff --git a/src/test/compile-fail/linkage4.rs b/src/test/compile-fail/linkage4.rs
new file mode 100644
index 00000000000..8f68f3e553c
--- /dev/null
+++ b/src/test/compile-fail/linkage4.rs
@@ -0,0 +1,15 @@
+// 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.
+
+#[linkage = "external"]
+static foo: int = 0;
+//~^ ERROR: the `linkage` attribute is experimental and not portable
+
+fn main() {}
diff --git a/src/test/run-make/linkage-attr-on-static/Makefile b/src/test/run-make/linkage-attr-on-static/Makefile
new file mode 100644
index 00000000000..6bcde96335c
--- /dev/null
+++ b/src/test/run-make/linkage-attr-on-static/Makefile
@@ -0,0 +1,8 @@
+-include ../tools.mk
+
+all:
+	$(CC) foo.c -c -o $(TMPDIR)/foo.o
+	$(AR) rcs $(TMPDIR)/libfoo.a $(TMPDIR)/foo.o
+	$(RUSTC) bar.rs -lfoo -L $(TMPDIR)
+	$(call RUN,bar) || exit 1
+
diff --git a/src/test/run-make/linkage-attr-on-static/bar.rs b/src/test/run-make/linkage-attr-on-static/bar.rs
new file mode 100644
index 00000000000..6125421bdeb
--- /dev/null
+++ b/src/test/run-make/linkage-attr-on-static/bar.rs
@@ -0,0 +1,25 @@
+// 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.
+
+#![feature(linkage)]
+
+#[no_mangle]
+#[linkage = "external"]
+static BAZ: i32 = 21;
+
+extern {
+    fn what() -> i32;
+}
+
+fn main() {
+    unsafe {
+        assert_eq!(what(), BAZ);
+    }
+}
diff --git a/src/test/run-make/linkage-attr-on-static/foo.c b/src/test/run-make/linkage-attr-on-static/foo.c
new file mode 100644
index 00000000000..78a6934f57f
--- /dev/null
+++ b/src/test/run-make/linkage-attr-on-static/foo.c
@@ -0,0 +1,7 @@
+#include <stdint.h>
+
+extern int32_t BAZ;
+
+int32_t what() {
+    return BAZ;
+}