diff options
Diffstat (limited to 'test/clang-rename/YAMLInput.cpp')
-rw-r--r-- | test/clang-rename/YAMLInput.cpp | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/test/clang-rename/YAMLInput.cpp b/test/clang-rename/YAMLInput.cpp new file mode 100644 index 000000000000..55dbc6d66a5a --- /dev/null +++ b/test/clang-rename/YAMLInput.cpp @@ -0,0 +1,10 @@ +class Foo1 { // CHECK: class Bar1 +}; + +class Foo2 { // CHECK: class Bar2 +}; + +// Test 1. +// RUN: clang-rename -input %S/Inputs/OffsetToNewName.yaml %s -- | sed 's,//.*,,' | FileCheck %s +// Test 2. +// RUN: clang-rename -input %S/Inputs/QualifiedNameToNewName.yaml %s -- | sed 's,//.*,,' | FileCheck %s |