From 698f8c2f01ea549d77d7dc3338a12e04c11057b9 Mon Sep 17 00:00:00 2001 From: Daniel Baumann Date: Wed, 17 Apr 2024 14:02:58 +0200 Subject: Adding upstream version 1.64.0+dfsg1. Signed-off-by: Daniel Baumann --- src/tools/rustfmt/tests/source/cfg_mod/bar.rs | 3 +++ src/tools/rustfmt/tests/source/cfg_mod/dir/dir1/dir2/wasm32.rs | 6 ++++++ src/tools/rustfmt/tests/source/cfg_mod/dir/dir1/dir3/wasm32.rs | 6 ++++++ src/tools/rustfmt/tests/source/cfg_mod/foo.rs | 4 ++++ src/tools/rustfmt/tests/source/cfg_mod/mod.rs | 10 ++++++++++ src/tools/rustfmt/tests/source/cfg_mod/other.rs | 1 + src/tools/rustfmt/tests/source/cfg_mod/wasm32.rs | 4 ++++ 7 files changed, 34 insertions(+) create mode 100644 src/tools/rustfmt/tests/source/cfg_mod/bar.rs create mode 100644 src/tools/rustfmt/tests/source/cfg_mod/dir/dir1/dir2/wasm32.rs create mode 100644 src/tools/rustfmt/tests/source/cfg_mod/dir/dir1/dir3/wasm32.rs create mode 100644 src/tools/rustfmt/tests/source/cfg_mod/foo.rs create mode 100644 src/tools/rustfmt/tests/source/cfg_mod/mod.rs create mode 100644 src/tools/rustfmt/tests/source/cfg_mod/other.rs create mode 100644 src/tools/rustfmt/tests/source/cfg_mod/wasm32.rs (limited to 'src/tools/rustfmt/tests/source/cfg_mod') diff --git a/src/tools/rustfmt/tests/source/cfg_mod/bar.rs b/src/tools/rustfmt/tests/source/cfg_mod/bar.rs new file mode 100644 index 000000000..5b6b5f438 --- /dev/null +++ b/src/tools/rustfmt/tests/source/cfg_mod/bar.rs @@ -0,0 +1,3 @@ +fn bar( ) -> &str { +"bar" +} diff --git a/src/tools/rustfmt/tests/source/cfg_mod/dir/dir1/dir2/wasm32.rs b/src/tools/rustfmt/tests/source/cfg_mod/dir/dir1/dir2/wasm32.rs new file mode 100644 index 000000000..0f8c0a3a7 --- /dev/null +++ b/src/tools/rustfmt/tests/source/cfg_mod/dir/dir1/dir2/wasm32.rs @@ -0,0 +1,6 @@ +fn + wasm32 + () -> &str +{ + "wasm32" +} diff --git a/src/tools/rustfmt/tests/source/cfg_mod/dir/dir1/dir3/wasm32.rs b/src/tools/rustfmt/tests/source/cfg_mod/dir/dir1/dir3/wasm32.rs new file mode 100644 index 000000000..0f8c0a3a7 --- /dev/null +++ b/src/tools/rustfmt/tests/source/cfg_mod/dir/dir1/dir3/wasm32.rs @@ -0,0 +1,6 @@ +fn + wasm32 + () -> &str +{ + "wasm32" +} diff --git a/src/tools/rustfmt/tests/source/cfg_mod/foo.rs b/src/tools/rustfmt/tests/source/cfg_mod/foo.rs new file mode 100644 index 000000000..de4ce55ef --- /dev/null +++ b/src/tools/rustfmt/tests/source/cfg_mod/foo.rs @@ -0,0 +1,4 @@ +fn foo( ) + -> &str { + "foo" +} diff --git a/src/tools/rustfmt/tests/source/cfg_mod/mod.rs b/src/tools/rustfmt/tests/source/cfg_mod/mod.rs new file mode 100644 index 000000000..45ba86f11 --- /dev/null +++ b/src/tools/rustfmt/tests/source/cfg_mod/mod.rs @@ -0,0 +1,10 @@ +#[cfg_attr(feature = "foo", path = "foo.rs")] +#[cfg_attr(not(feture = "foo"), path = "bar.rs")] +mod sub_mod; + +#[cfg_attr(target_arch = "wasm32", path = "dir/dir1/dir2/wasm32.rs")] +#[cfg_attr(not(target_arch = "wasm32"), path = "dir/dir1/dir3/wasm32.rs")] +mod wasm32; + +#[some_attr(path = "somewhere.rs")] +mod other; diff --git a/src/tools/rustfmt/tests/source/cfg_mod/other.rs b/src/tools/rustfmt/tests/source/cfg_mod/other.rs new file mode 100644 index 000000000..0b5c04d21 --- /dev/null +++ b/src/tools/rustfmt/tests/source/cfg_mod/other.rs @@ -0,0 +1 @@ +fn other() -> &str { "other"} diff --git a/src/tools/rustfmt/tests/source/cfg_mod/wasm32.rs b/src/tools/rustfmt/tests/source/cfg_mod/wasm32.rs new file mode 100644 index 000000000..3741e53fd --- /dev/null +++ b/src/tools/rustfmt/tests/source/cfg_mod/wasm32.rs @@ -0,0 +1,4 @@ +fn + wasm32() -> &str { + "wasm32" + } -- cgit v1.2.3