diff options
author | Saleem Abdulrasool <compnerd@compnerd.org> | 2016-07-27 04:43:15 +0000 |
---|---|---|
committer | Saleem Abdulrasool <compnerd@compnerd.org> | 2016-07-27 04:43:15 +0000 |
commit | 8357ccf7fb7c6c2a6ea1bc3c47f4d71fd861b3c6 (patch) | |
tree | 4af48e4f3088bf7c6b01bd7bb0b933983c0dd833 /clang-tools-extra/test/clang-rename/ClassNameInFunctionDefenition.cpp | |
parent | 57a127a7d1323c752936c83daabb7ef4b2e9abd0 (diff) | |
download | bcm5719-llvm-8357ccf7fb7c6c2a6ea1bc3c47f4d71fd861b3c6.tar.gz bcm5719-llvm-8357ccf7fb7c6c2a6ea1bc3c47f4d71fd861b3c6.zip |
test: simplify commands, NFC
Rather than copying the file and then doing an in-place edit, perform the
replacements to stdout and pass the output to FileCheck directly. Avoids
unnecessary copying and seds.
llvm-svn: 276836
Diffstat (limited to 'clang-tools-extra/test/clang-rename/ClassNameInFunctionDefenition.cpp')
-rw-r--r-- | clang-tools-extra/test/clang-rename/ClassNameInFunctionDefenition.cpp | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/clang-tools-extra/test/clang-rename/ClassNameInFunctionDefenition.cpp b/clang-tools-extra/test/clang-rename/ClassNameInFunctionDefenition.cpp index 1b2d59e1862..91636faa719 100644 --- a/clang-tools-extra/test/clang-rename/ClassNameInFunctionDefenition.cpp +++ b/clang-tools-extra/test/clang-rename/ClassNameInFunctionDefenition.cpp @@ -1,6 +1,4 @@ -// RUN: cat %s > %t.cpp -// RUN: clang-rename -offset=136 -new-name=Bar %t.cpp -i -- -// RUN: sed 's,//.*,,' %t.cpp | FileCheck %s +// RUN: clang-rename -offset=74 -new-name=Bar %s -- | FileCheck %s class Foo { // CHECK: class Bar { public: |