1
0
Fork 0
mirror of https://github.com/eclipse-cdt/cdt synced 2025-07-25 18:05:33 +02:00

Improved testStringConcatenationWithMacro test.

This commit is contained in:
Sergey Prigogin 2015-06-26 14:13:43 -07:00
parent 54f1facfbe
commit 28167f47fc

View file

@ -699,11 +699,12 @@ public class AST2Tests extends AST2TestBase {
} }
} }
// #define F(a) a
// #define _MACRO "macro" // #define _MACRO "macro"
// #define MACRO _MACRO // #define MACRO _MACRO
// void f(const char* s); // void f(const char* s);
// void test() { // void test() {
// f("aaa"MACRO); // F(f("aaa"MACRO));
// } // }
public void testStringConcatenationWithMacro() throws Exception { public void testStringConcatenationWithMacro() throws Exception {
for (ParserLanguage lang : ParserLanguage.values()) { for (ParserLanguage lang : ParserLanguage.values()) {