From 107895e8cc294bfcf24137b0f4a04fbca822142b Mon Sep 17 00:00:00 2001 From: Reijo Tomperi Date: Fri, 2 Oct 2009 17:28:30 +0300 Subject: [PATCH] TODO test cases TestTokenizer::vardec_static added --- test/testtokenize.cpp | 39 +++++++++++++++++++++++++++++++++------ 1 file changed, 33 insertions(+), 6 deletions(-) diff --git a/test/testtokenize.cpp b/test/testtokenize.cpp index 33e22aaae..bc7a7fa8d 100644 --- a/test/testtokenize.cpp +++ b/test/testtokenize.cpp @@ -138,7 +138,7 @@ private: TEST_CASE(vardecl2); TEST_CASE(vardecl3); TEST_CASE(vardecl4); - TEST_CASE(vardecl5); + TEST_CASE(vardec_static); TEST_CASE(vardecl6); TEST_CASE(vardecl7); TEST_CASE(vardecl8); @@ -2291,12 +2291,39 @@ private: ASSERT_EQUALS(res3, tokenizeAndStringify(code3)); } - void vardecl5() + void vardec_static() { - // don't simplify declarations of static variables - // "static int i = 0;" is not the same as "static int i; i = 0;" - const char code[] = "static int i = 0 ;"; - ASSERT_EQUALS(code, tokenizeAndStringify(code)); + { + // don't simplify declarations of static variables + // "static int i = 0;" is not the same as "static int i; i = 0;" + const char code[] = "static int i = 0 ;"; + ASSERT_EQUALS(code, tokenizeAndStringify(code)); + } + + { + const char code[] = "static int a, b;"; + TODO_ASSERT_EQUALS("static int a ; static int b ;", tokenizeAndStringify(code)); + } + + { + const char code[] = "static unsigned int a, b;"; + TODO_ASSERT_EQUALS("static unsigned int a ; static unsigned int b ;", tokenizeAndStringify(code)); + } + + { + const char code[] = "static int a=1, b=1;"; + TODO_ASSERT_EQUALS("static int a = 1 ; static int b = 1 ;", tokenizeAndStringify(code)); + } + + { + const char code[] = "static int *a, *b;"; + TODO_ASSERT_EQUALS("static int * a ; static int * b ;", tokenizeAndStringify(code)); + } + + { + const char code[] = "static unsigned int *a=0, *b=0;"; + TODO_ASSERT_EQUALS("static unsigned int * a = 0 ; static unsigned int * b = 0 ;", tokenizeAndStringify(code)); + } } void vardecl6()