summaryrefslogtreecommitdiffstats
path: root/tests/ui/proc-macro/span-api-tests.rs
diff options
context:
space:
mode:
authorDaniel Baumann <daniel.baumann@progress-linux.org>2024-04-17 12:19:13 +0000
committerDaniel Baumann <daniel.baumann@progress-linux.org>2024-04-17 12:19:13 +0000
commit218caa410aa38c29984be31a5229b9fa717560ee (patch)
treec54bd55eeb6e4c508940a30e94c0032fbd45d677 /tests/ui/proc-macro/span-api-tests.rs
parentReleasing progress-linux version 1.67.1+dfsg1-1~progress7.99u1. (diff)
downloadrustc-218caa410aa38c29984be31a5229b9fa717560ee.tar.xz
rustc-218caa410aa38c29984be31a5229b9fa717560ee.zip
Merging upstream version 1.68.2+dfsg1.
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'tests/ui/proc-macro/span-api-tests.rs')
-rw-r--r--tests/ui/proc-macro/span-api-tests.rs62
1 files changed, 62 insertions, 0 deletions
diff --git a/tests/ui/proc-macro/span-api-tests.rs b/tests/ui/proc-macro/span-api-tests.rs
new file mode 100644
index 000000000..3f04ba866
--- /dev/null
+++ b/tests/ui/proc-macro/span-api-tests.rs
@@ -0,0 +1,62 @@
+// run-pass
+// ignore-pretty
+// aux-build:span-api-tests.rs
+// aux-build:span-test-macros.rs
+// compile-flags: -Ztranslate-remapped-path-to-local-path=yes
+
+#[macro_use]
+extern crate span_test_macros;
+
+extern crate span_api_tests;
+
+// FIXME(69775): Investigate `assert_fake_source_file`.
+
+use span_api_tests::{reemit, assert_source_file, macro_stringify};
+
+macro_rules! say_hello {
+ ($macname:ident) => ( $macname! { "Hello, world!" })
+}
+
+assert_source_file! { "Hello, world!" }
+
+say_hello! { assert_source_file }
+
+reemit_legacy! {
+ assert_source_file! { "Hello, world!" }
+}
+
+say_hello_extern! { assert_source_file }
+
+reemit! {
+ assert_source_file! { "Hello, world!" }
+}
+
+fn main() {
+ let s = macro_stringify!(Hello, world!);
+ assert_eq!(s, "Hello, world!");
+ assert_eq!(macro_stringify!(Hello, world!), "Hello, world!");
+ assert_eq!(reemit_legacy!(macro_stringify!(Hello, world!)), "Hello, world!");
+ reemit_legacy!(assert_eq!(macro_stringify!(Hello, world!), "Hello, world!"));
+ // reemit change the span to be that of the call site
+ assert_eq!(
+ reemit!(macro_stringify!(Hello, world!)),
+ "reemit!(macro_stringify!(Hello, world!))"
+ );
+ let r = "reemit!(assert_eq!(macro_stringify!(Hello, world!), r))";
+ reemit!(assert_eq!(macro_stringify!(Hello, world!), r));
+
+ assert_eq!(macro_stringify!(
+ Hello,
+ world!
+ ), "Hello,\n world!");
+
+ assert_eq!(macro_stringify!(Hello, /*world */ !), "Hello, /*world */ !");
+ assert_eq!(macro_stringify!(
+ Hello,
+ // comment
+ world!
+ ), "Hello,\n // comment\n world!");
+
+ assert_eq!(say_hello! { macro_stringify }, "\"Hello, world!\"");
+ assert_eq!(say_hello_extern! { macro_stringify }, "\"Hello, world!\"");
+}