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 | 277f6cf8051d2d48b5d8757dc807e5bf8855cd87 (patch) | |
tree | f33331f982687a0a6ee417cf3e585173c2baa122 | |
parent | 5e5e36712b26d46da25d064b81a8d909c3bc9030 (diff) | |
download | bcm5719-llvm-277f6cf8051d2d48b5d8757dc807e5bf8855cd87.tar.gz bcm5719-llvm-277f6cf8051d2d48b5d8757dc807e5bf8855cd87.zip |
Fixing an obvious bug in a test.
llvm-svn: 160268
-rw-r--r-- | clang/test/Tooling/clang-ast-dump.cpp | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/clang/test/Tooling/clang-ast-dump.cpp b/clang/test/Tooling/clang-ast-dump.cpp index a8b541ebc25..a22fffdfe24 100644 --- a/clang/test/Tooling/clang-ast-dump.cpp +++ b/clang/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"> |