-
Notifications
You must be signed in to change notification settings - Fork 14.9k
[llvm][mustache] Precommit test for StandaloneIndentation #159184
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
Merged
Conversation
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This was referenced Sep 16, 2025
@llvm/pr-subscribers-llvm-support Author: Paul Kirth (ilovepi) ChangesFull diff: https://github.com/llvm/llvm-project/pull/159184.diff 1 Files Affected:
diff --git a/llvm/unittests/Support/MustacheTest.cpp b/llvm/unittests/Support/MustacheTest.cpp
index 08613f4b66962..dadee6bcf7b60 100644
--- a/llvm/unittests/Support/MustacheTest.cpp
+++ b/llvm/unittests/Support/MustacheTest.cpp
@@ -991,6 +991,16 @@ TEST(MustachePartials, PaddingWhitespace) {
EXPECT_EQ("|[]|", Out);
}
+TEST(MustachePartials, StandaloneIndentation) {
+ Value D = Object{{"content", "<\n->"}};
+ auto T = Template("\\\n {{>partial}}\n/\n");
+ T.registerPartial("partial", "|\n{{{content}}}\n|\n");
+ std::string Out;
+ raw_string_ostream OS(Out);
+ T.render(D, OS);
+ EXPECT_NE("\\\n |\n <\n ->\n |\n/\n", Out);
+}
+
TEST(MustacheLambdas, BasicInterpolation) {
Value D = Object{};
auto T = Template("Hello, {{lambda}}!");
|
This was referenced Sep 16, 2025
evelez7
approved these changes
Sep 17, 2025
b6d2c4b
to
db6bc75
Compare
edd7cff
to
30e8489
Compare
db6bc75
to
6fa7a86
Compare
30e8489
to
20788dd
Compare
Base automatically changed from
users/ilovepi/triple-muststache-impl
to
main
September 24, 2025 20:44
5fa6844
to
6f2cc7e
Compare
Merge activity
|
4b829a1
to
abd5ab1
Compare
abd5ab1
to
9a8d968
Compare
LLVM Buildbot has detected a new failure on builder Full details are available at: https://lab.llvm.org/buildbot/#/builders/65/builds/23110 Here is the relevant piece of the build log for the reference
|
mahesh-attarde
pushed a commit
to mahesh-attarde/llvm-project
that referenced
this pull request
Oct 3, 2025
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
No description provided.