about summary refs log tree commit diff
path: root/src/test
diff options
context:
space:
mode:
authorAlex Burka <alex@alexburka.com>2017-10-27 04:50:54 +0000
committerAlex Burka <alex@alexburka.com>2017-11-19 22:22:22 +0000
commitbcd1fedf034b8735605b390f3a4d75b65162b514 (patch)
tree52adbeb88fd6168e6ca451c34ebc79885b25a206 /src/test
parentc73bcf043e94b32e2d53ecfd3e53a0535b320456 (diff)
downloadrust-bcd1fedf034b8735605b390f3a4d75b65162b514.tar.gz
rust-bcd1fedf034b8735605b390f3a4d75b65162b514.zip
add UI test
Diffstat (limited to 'src/test')
-rw-r--r--src/test/ui/macro_backtrace/auxiliary/ping.rs20
-rw-r--r--src/test/ui/macro_backtrace/main.rs25
-rw-r--r--src/test/ui/macro_backtrace/main.stderr21
3 files changed, 66 insertions, 0 deletions
diff --git a/src/test/ui/macro_backtrace/auxiliary/ping.rs b/src/test/ui/macro_backtrace/auxiliary/ping.rs
new file mode 100644
index 00000000000..eeed0d78158
--- /dev/null
+++ b/src/test/ui/macro_backtrace/auxiliary/ping.rs
@@ -0,0 +1,20 @@
+// Copyright 2017 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.
+
+// Test that the macro backtrace facility works (supporting file)
+
+// a non-local macro
+#[macro_export]
+macro_rules! ping {
+    () => {
+        pong!();
+    }
+}
+
diff --git a/src/test/ui/macro_backtrace/main.rs b/src/test/ui/macro_backtrace/main.rs
new file mode 100644
index 00000000000..4da0c586d60
--- /dev/null
+++ b/src/test/ui/macro_backtrace/main.rs
@@ -0,0 +1,25 @@
+// Copyright 2017 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.
+
+// Test that the macro backtrace facility works
+// aux-build:ping.rs
+// rustc-env:RUST_MACRO_BACKTRACE
+
+#[macro_use] extern crate ping;
+
+// a local macro
+macro_rules! pong {
+    () => { syntax error };
+}
+
+fn main() {
+    pong!();
+    ping!();
+}
diff --git a/src/test/ui/macro_backtrace/main.stderr b/src/test/ui/macro_backtrace/main.stderr
new file mode 100644
index 00000000000..37f3d450215
--- /dev/null
+++ b/src/test/ui/macro_backtrace/main.stderr
@@ -0,0 +1,21 @@
+error: expected one of `!`, `.`, `::`, `;`, `?`, `{`, `}`, or an operator, found `error`
+  --> $DIR/main.rs:19:20
+   |
+19 |     () => { syntax error };
+   |                   -^^^^^ unexpected token
+   |                   |
+   |                   expected one of 8 possible tokens here
+$DIR/main.rs:23:5: 23:13 note: in this expansion of pong! (defined in $DIR/main.rs)
+
+error: expected one of `!`, `.`, `::`, `;`, `?`, `{`, `}`, or an operator, found `error`
+  --> $DIR/main.rs:19:20
+   |
+19 |     () => { syntax error };
+   |                   -^^^^^ unexpected token
+   |                   |
+   |                   expected one of 8 possible tokens here
+$DIR/main.rs:24:5: 24:13 note: in this expansion of ping! (defined in <ping macros>)
+<ping macros>:1:11: 1:24 note: in this expansion of pong! (defined in $DIR/main.rs)
+
+error: aborting due to 2 previous errors
+