Skip to content

Commit

Permalink
[clangd] Add fno-delayed-parsing to new define inline tests
Browse files Browse the repository at this point in the history
To unbreak windows buildbots.
  • Loading branch information
kadircet committed Oct 31, 2019
1 parent 6cfbefb commit 1c66d09
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions clang-tools-extra/clangd/unittests/TweakTests.cpp
Expand Up @@ -1529,6 +1529,7 @@ est);
void foo(PARAM, TYPE b, TYPE c, TYPE d = BODY(x)){}
)cpp"},
};
ExtraArgs.push_back("-fno-delayed-template-parsing");
for (const auto &Case : Cases)
EXPECT_EQ(apply(Case.first), Case.second) << Case.first;
}
Expand Down Expand Up @@ -1559,6 +1560,7 @@ TEST_F(DefineInlineTest, TransformTemplParamNames) {
};
)cpp";
ExtraArgs.push_back("-fno-delayed-template-parsing");
EXPECT_EQ(apply(Test), Expected);
}

Expand Down

0 comments on commit 1c66d09

Please sign in to comment.