about summary refs log tree commit diff
path: root/tests/ui/attributes
diff options
context:
space:
mode:
authorJubilee <workingjubilee@gmail.com>2025-07-04 23:26:23 -0700
committerGitHub <noreply@github.com>2025-07-04 23:26:23 -0700
commit5f415da0b52fa8de667ce53ec5daf76fca6a0591 (patch)
tree5c2c965d8d781e131a6f46dcb4e0c8e0748b4316 /tests/ui/attributes
parent069f571fad6c4f99aa1cdc9367bc51a758a9f5e6 (diff)
parent066a281f60fd5071a50cf15a28ed40f15bef7563 (diff)
downloadrust-5f415da0b52fa8de667ce53ec5daf76fca6a0591.tar.gz
rust-5f415da0b52fa8de667ce53ec5daf76fca6a0591.zip
Rollup merge of #143300 - Kivooeo:tf25, r=tgross35
`tests/ui`: A New Order [25/N]

> [!NOTE]
>
> Intermediate commits are intended to help review, but will be squashed prior to merge.

Some `tests/ui/` housekeeping, to trim down number of tests directly under `tests/ui/`. Part of rust-lang/rust#133895.

r? `@tgross35`
Diffstat (limited to 'tests/ui/attributes')
-rw-r--r--tests/ui/attributes/reexport-test-harness-entry-point.rs14
1 files changed, 14 insertions, 0 deletions
diff --git a/tests/ui/attributes/reexport-test-harness-entry-point.rs b/tests/ui/attributes/reexport-test-harness-entry-point.rs
new file mode 100644
index 00000000000..95765a719ed
--- /dev/null
+++ b/tests/ui/attributes/reexport-test-harness-entry-point.rs
@@ -0,0 +1,14 @@
+//! Check that `#[reexport_test_harness_main]` correctly reexports the test harness entry point
+//! and allows it to be called from within the code.
+
+//@ run-pass
+//@ compile-flags:--test
+
+#![reexport_test_harness_main = "test_main"]
+
+#[cfg(test)]
+fn _unused() {
+    // should resolve to the entry point function the --test harness
+    // creates.
+    test_main();
+}