diff options
author | Alexander Kornienko <alexfh@google.com> | 2012-07-16 13:31:37 +0000 |
---|---|---|
committer | Alexander Kornienko <alexfh@google.com> | 2012-07-16 13:31:37 +0000 |
commit | 6e39d05d4e0babbc9cc2bcec0c02394a45ec727a (patch) | |
tree | b9a94a8af308c69ab832e31a39a2ed025604d2a7 | |
parent | dea8fba3c632745136017f3e8e9d9e0341d6feb9 (diff) |
Fixing an obvious bug in a test.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@160268 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r-- | test/Tooling/clang-ast-dump.cpp | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/test/Tooling/clang-ast-dump.cpp b/test/Tooling/clang-ast-dump.cpp index a8b541ebc2..a22fffdfe2 100644 --- a/test/Tooling/clang-ast-dump.cpp +++ b/test/Tooling/clang-ast-dump.cpp @@ -1,5 +1,4 @@ -// RUN: clang-ast-dump "%t/test.cpp" -f test_namespace::TheClass::theMethod -- -c 2>&1|FileCheck %s -// FIXME: Make the above easier. +// RUN: clang-ast-dump "%s" -f test_namespace::TheClass::theMethod -- -c 2>&1|FileCheck %s // CHECK: <CXXMethod ptr="0x{{[0-9a-f]+}}" name="theMethod" prototype="true"> // CHECK: <ParmVar ptr="0x{{[0-9a-f]+}}" name="x" initstyle="c"> |