[PATCH] rust: doctests: Use tabs for indentation in generated C code

From: David Gow
Date: Thu Jul 20 2023 - 02:33:15 EST


While Rust uses 4 spaces for indentation, we should use tabs in the
generated C code. This does result in some scary-looking tab characters
in a .rs file, but they're in a string literal, so shouldn't make
anything complain too much.

Fixes: a66d733da801 ("rust: support running Rust documentation tests as KUnit ones")
Signed-off-by: David Gow <davidgow@xxxxxxxxxx>
---
scripts/rustdoc_test_gen.rs | 8 ++++----
1 file changed, 4 insertions(+), 4 deletions(-)

diff --git a/scripts/rustdoc_test_gen.rs b/scripts/rustdoc_test_gen.rs
index 5ebd42ae4a3f..a625cf3517c0 100644
--- a/scripts/rustdoc_test_gen.rs
+++ b/scripts/rustdoc_test_gen.rs
@@ -242,13 +242,13 @@ macro_rules! assert_eq {{
{c_test_declarations}

static struct kunit_case test_cases[] = {{
- {c_test_cases}
- {{ }}
+ {c_test_cases}
+ {{ }}
}};

static struct kunit_suite test_suite = {{
- .name = "rust_doctests_kernel",
- .test_cases = test_cases,
+ .name = "rust_doctests_kernel",
+ .test_cases = test_cases,
}};

kunit_test_suite(test_suite);
--
2.41.0.255.g8b1d071c50-goog