summaryrefslogtreecommitdiffstats
path: root/clang-tools-extra/test/clang-rename/Variable.cpp
diff options
context:
space:
mode:
authorKirill Bobyrev <omtcyfz@gmail.com>2016-08-10 13:28:30 +0000
committerKirill Bobyrev <omtcyfz@gmail.com>2016-08-10 13:28:30 +0000
commit77f522cb42b4ec2112ea1b4534d82b02ea1f2b94 (patch)
treecda7444a1a089e960f69fa0b6efa5de1d07f9ac4 /clang-tools-extra/test/clang-rename/Variable.cpp
parente171ea8a33198c3b257c110a5fecc97acdbb5b52 (diff)
downloadbcm5719-llvm-77f522cb42b4ec2112ea1b4534d82b02ea1f2b94.tar.gz
bcm5719-llvm-77f522cb42b4ec2112ea1b4534d82b02ea1f2b94.zip
[clang-rename] merge tests when possible
The only difference between some tests is -offset passed to clang-rename. It makes sense to merge them into a single file and add multiple tool invocations. Reviewers: alexfh Differential Revision: https://reviews.llvm.org/D23158 llvm-svn: 278221
Diffstat (limited to 'clang-tools-extra/test/clang-rename/Variable.cpp')
-rw-r--r--clang-tools-extra/test/clang-rename/Variable.cpp41
1 files changed, 23 insertions, 18 deletions
diff --git a/clang-tools-extra/test/clang-rename/Variable.cpp b/clang-tools-extra/test/clang-rename/Variable.cpp
index 02935bdb360..992c96bd20b 100644
--- a/clang-tools-extra/test/clang-rename/Variable.cpp
+++ b/clang-tools-extra/test/clang-rename/Variable.cpp
@@ -1,27 +1,32 @@
-// RUN: cat %s > %t.cpp
-// RUN: clang-rename -offset=148 -new-name=Bar %t.cpp -i --
-// RUN: sed 's,//.*,,' %t.cpp | FileCheck %s
-
namespace A {
-int Foo; // CHECK: int Bar;
+int Foo; /* Test 1 */ // CHECK: int Bar;
}
-int Foo; // CHECK: int Foo;
-int Qux = Foo; // CHECK: int Qux = Foo;
-int Baz = A::Foo; // CHECK: Baz = A::Bar;
+int Foo; // CHECK: int Foo;
+int Qux = Foo; // CHECK: int Qux = Foo;
+int Baz = A::Foo; /* Test 2 */ // CHECK: Baz = A::Bar;
void fun() {
struct {
- int Foo; // CHECK: int Foo;
+ int Foo; // CHECK: int Foo;
} b = {100};
- int Foo = 100; // CHECK: int Foo = 100;
- Baz = Foo; // CHECK: Baz = Foo;
+ int Foo = 100; // CHECK: int Foo = 100;
+ Baz = Foo; // CHECK: Baz = Foo;
{
- extern int Foo; // CHECK: extern int Foo;
- Baz = Foo; // CHECK: Baz = Foo;
- Foo = A::Foo + Baz; // CHECK: Foo = A::Bar + Baz;
- A::Foo = b.Foo; // CHECK: A::Bar = b.Foo;
+ extern int Foo; // CHECK: extern int Foo;
+ Baz = Foo; // CHECK: Baz = Foo;
+ Foo = A::Foo /* Test 3 */ + Baz; // CHECK: Foo = A::Bar /* Test 3 */ + Baz;
+ A::Foo /* Test 4 */ = b.Foo; // CHECK: A::Bar /* Test 4 */ = b.Foo;
}
- Foo = b.Foo; // Foo = b.Foo;
+ Foo = b.Foo; // Foo = b.Foo;
}
-// Use grep -FUbo 'Foo' <file> to get the correct offset of foo when changing
-// this file.
+// Test 1.
+// RUN: clang-rename -offset=18 -new-name=Bar %s -- | sed 's,//.*,,' | FileCheck %s
+// Test 2.
+// RUN: clang-rename -offset=206 -new-name=Bar %s -- | sed 's,//.*,,' | FileCheck %s
+// Test 3.
+// RUN: clang-rename -offset=613 -new-name=Bar %s -- | sed 's,//.*,,' | FileCheck %s
+// Test 4.
+// RUN: clang-rename -offset=688 -new-name=Bar %s -- | sed 's,//.*,,' | FileCheck %s
+
+// To find offsets after modifying the file, use:
+// grep -Ubo 'Foo.*' <file>
OpenPOWER on IntegriCloud