diff options
| author | NAKAMURA Takumi <geek4civic@gmail.com> | 2016-05-10 22:46:32 +0000 |
|---|---|---|
| committer | NAKAMURA Takumi <geek4civic@gmail.com> | 2016-05-10 22:46:32 +0000 |
| commit | c92b8e51ae3c36915464eb7798c3bc127f6e490e (patch) | |
| tree | e88e3a259045c4feab6b49b60f2ad1a1beaa4f09 | |
| parent | 22c541438d065b0dd4f2e02fba92acf586ff45af (diff) | |
| download | bcm5719-llvm-c92b8e51ae3c36915464eb7798c3bc127f6e490e.tar.gz bcm5719-llvm-c92b8e51ae3c36915464eb7798c3bc127f6e490e.zip | |
Disable IncludeFixerTests/IncludeFixer.NestedName for now. It doesn't pass for targeting win32. Investigating.
llvm-svn: 269135
| -rw-r--r-- | clang-tools-extra/unittests/include-fixer/IncludeFixerTest.cpp | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/clang-tools-extra/unittests/include-fixer/IncludeFixerTest.cpp b/clang-tools-extra/unittests/include-fixer/IncludeFixerTest.cpp index 44be4c6fdd9..a9b123ae278 100644 --- a/clang-tools-extra/unittests/include-fixer/IncludeFixerTest.cpp +++ b/clang-tools-extra/unittests/include-fixer/IncludeFixerTest.cpp @@ -115,11 +115,14 @@ TEST(IncludeFixer, MinimizeInclude) { runIncludeFixer("a::b::foo bar;\n", IncludePath)); } +#if 0 +// It doesn't pass for targeting win32. Investigating. TEST(IncludeFixer, NestedName) { EXPECT_EQ("#include \"dir/otherdir/qux.h\"\n" "namespace a {}\nint a = a::b::foo(0);\n", runIncludeFixer("namespace a {}\nint a = a::b::foo(0);\n")); } +#endif TEST(IncludeFixer, MultipleMissingSymbols) { EXPECT_EQ("#include <string>\nstd::string bar;\nstd::sting foo;\n", |

