diff options
author | Gabor Marton <martongabesz@gmail.com> | 2018-05-18 15:46:18 +0000 |
---|---|---|
committer | Gabor Marton <martongabesz@gmail.com> | 2018-05-18 15:46:18 +0000 |
commit | 2ae9da37ae28d0c705e9ead034eb2c8543d3fd5c (patch) | |
tree | db323c6b818a550b46bcdae8c93cd58077daf437 | |
parent | 962b911af16ed8226b391f9556c27db691e90dc5 (diff) | |
download | bcm5719-llvm-2ae9da37ae28d0c705e9ead034eb2c8543d3fd5c.tar.gz bcm5719-llvm-2ae9da37ae28d0c705e9ead034eb2c8543d3fd5c.zip |
[ASTImporter] Enable disabled but passing test
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
-rw-r--r-- | clang/unittests/AST/ASTImporterTest.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/clang/unittests/AST/ASTImporterTest.cpp b/clang/unittests/AST/ASTImporterTest.cpp index 02020e6fa23..7d6748e5509 100644 --- a/clang/unittests/AST/ASTImporterTest.cpp +++ b/clang/unittests/AST/ASTImporterTest.cpp @@ -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 {}; |