[Clangd] NFC: Added FIXME in ExtractVariable tests

llvm-svn: 367406
This commit is contained in:
Shaurya Gupta 2019-07-31 10:08:29 +00:00
parent e7241e8592
commit 8eb5ba583c
1 changed files with 7 additions and 2 deletions

View File

@ -419,6 +419,11 @@ TEST(TweakTest, ExtractVariable) {
void f(int a) {
PLUS([[1+a]]);
})cpp",
/*FIXME: It should be extracted like this.
R"cpp(#define PLUS(x) x++
void f(int a) {
auto dummy = 1+a; int y = PLUS(dummy);
})cpp"},*/
R"cpp(#define PLUS(x) x++
void f(int a) {
auto dummy = PLUS(1+a); dummy;
@ -429,9 +434,9 @@ TEST(TweakTest, ExtractVariable) {
if(1)
LOOP(5 + [[3]])
})cpp",
/*FIXME: It should be extracted like this. SelectionTree needs to be
/*FIXME: It should be extracted like this. SelectionTree needs to be
* fixed for macros.
R"cpp(#define LOOP(x) while (1) {a = x;}
R"cpp(#define LOOP(x) while (1) {a = x;}
void f(int a) {
auto dummy = 3; if(1)
LOOP(5 + dummy)