Skip to content

Commit

Permalink
[ASTImporter] Enable disabled but passing test
Browse files Browse the repository at this point in the history
Summary:
There is a test which passes since D32947, but it was forgotten to be enabled.
This patch enables that disabled test.

Reviewers: a.sidorin, r.stahl, xazax.hun

Subscribers: rnkovacs, dkrupp, cfe-commits

Differential Revision: https://reviews.llvm.org/D47069

llvm-svn: 332728
  • Loading branch information
martong committed May 18, 2018
1 parent 962b911 commit 2ae9da3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion clang/unittests/AST/ASTImporterTest.cpp
Expand Up @@ -1399,7 +1399,7 @@ TEST_P(ASTImporterTestBase, IDNSOrdinary) {
EXPECT_EQ(From->getIdentifierNamespace(), To->getIdentifierNamespace());
}

TEST_P(ASTImporterTestBase, DISABLED_IDNSOfNonmemberOperator) {
TEST_P(ASTImporterTestBase, IDNSOfNonmemberOperator) {
Decl *FromTU = getTuDecl(
R"(
struct X {};
Expand Down

0 comments on commit 2ae9da3

Please sign in to comment.