-Wmisleading-indentation: Increase test coverage
authorDavid Malcolm <dmalcolm@redhat.com>
Wed, 20 May 2015 16:09:19 +0000 (16:09 +0000)
committerDavid Malcolm <dmalcolm@gcc.gnu.org>
Wed, 20 May 2015 16:09:19 +0000 (16:09 +0000)
gcc/testsuite/ChangeLog:
* c-c++-common/Wmisleading-indentation.c (fn_32): New.
(fn_33_k_and_r_style): New.
(fn_33_stroustrup_style): New.
(fn_33_allman_style): New.
(fn_33_whitesmiths_style): New.
(fn_33_horstmann_style): New.
(fn_33_ratliff_banner_style): New.
(fn_33_lisp_style): New.
(fn_34_indent_dash_gnu): New.
(fn_34_indent_dash_kr): New.
(fn_34_indent_dash_orig): New.
(fn_34_indent_linux_style): New.

From-SVN: r223447

gcc/testsuite/ChangeLog
gcc/testsuite/c-c++-common/Wmisleading-indentation.c

index 1a7a87cae95197d084511d3221c07bb802aae3a9..28cc03c04d5177692a34b9ab78799ceec35b1fc9 100644 (file)
@@ -1,3 +1,18 @@
+2015-05-20  David Malcolm  <dmalcolm@redhat.com>
+
+       * c-c++-common/Wmisleading-indentation.c (fn_32): New.
+       (fn_33_k_and_r_style): New.
+       (fn_33_stroustrup_style): New.
+       (fn_33_allman_style): New.
+       (fn_33_whitesmiths_style): New.
+       (fn_33_horstmann_style): New.
+       (fn_33_ratliff_banner_style): New.
+       (fn_33_lisp_style): New.
+       (fn_34_indent_dash_gnu): New.
+       (fn_34_indent_dash_kr): New.
+       (fn_34_indent_dash_orig): New.
+       (fn_34_indent_linux_style): New.
+
 2015-05-20  Andre Vehreschild  <vehre@gmx.de>
 
        PR fortran/65548
index 3dbbb8b17d3554c6d8fa0223685b07042f51443e..6363d71fe7f71465ad351404b781aae7cf6697ae 100644 (file)
@@ -429,3 +429,227 @@ void fn_31 (void)
   else
     foo (3);
 }
+
+/* Ensure that we can disable the warning.  */
+int
+fn_32 (int flag)
+{
+  int x = 4, y = 5;
+#pragma GCC diagnostic push
+#pragma GCC diagnostic ignored "-Wmisleading-indentation"
+  if (flag)
+    x = 3;
+    y = 2;
+#pragma GCC diagnostic pop
+
+  return x * y;
+}
+
+/* Verify that a variety of different indentation styles are supported
+   without leading to warnings.  */
+void
+fn_33_k_and_r_style (void)
+{
+  int i;
+  for (i = 0; i < 10; i++) {
+    if (flagB) {
+      foo(0);
+      foo(1);
+    } else {
+      foo(2);
+      foo(3);
+    }
+    foo(4);
+  }
+}
+
+void
+fn_33_stroustrup_style (void)
+{
+  int i;
+  for (i = 0; i < 10; i++) {
+    if (flagA) {
+      foo(0);
+      foo(1);
+    }
+    else {
+      foo(2);
+      foo(3);
+    }
+    foo(4);
+  }
+}
+
+void
+fn_33_allman_style (void)
+{
+  int i;
+  for (i = 0; i < 10; i++)
+  {
+    if (flagA)
+    {
+      foo(0);
+      foo(1);
+    }
+    else
+    {
+      foo(2);
+      foo(3);
+    }
+    foo(4);
+  }
+}
+
+void
+fn_33_whitesmiths_style (void)
+{
+    int i;
+    for (i = 0; i < 10; i++)
+        {
+        if (flagA)
+            {
+            foo(0);
+            foo(1);
+            }
+        else
+            {
+            foo(2);
+            foo(3);
+            }
+        foo(4);
+        }
+}
+
+void
+fn_33_horstmann_style (void)
+{
+    int i;
+    for (i = 0; i < 10; i++)
+    {   if (flagA)
+        {   foo(0);
+            foo(1);
+        }
+        else
+        {   foo(2);
+            foo(3);
+        }
+        foo(4);
+    }
+}
+
+void
+fn_33_ratliff_banner_style (void)
+{
+    int i;
+    for (i = 0; i < 10; i++) {
+       if (flagA) {
+           foo(0);
+           foo(1);
+           }
+       else {
+            foo(2);
+            foo(3);
+            }
+       foo(4);
+       }
+}
+
+void
+fn_33_lisp_style (void)
+{
+  int i;
+  for (i = 0; i < 10; i++) {
+    if (flagA) {
+        foo(0);
+        foo(1); }
+    else {
+        foo(2);
+        foo(3); }
+    foo(4); }
+}
+
+/* A function run through GNU "indent" with various options.
+   None of these should lead to warnings.  */
+
+/* "indent -gnu".  */
+void
+fn_34_indent_dash_gnu (void)
+{
+  int i;
+  while (flagA)
+    for (i = 0; i < 10; i++)
+      {
+       if (flagB)
+         {
+           foo (0);
+           foo (1);
+         }
+       else
+         {
+           foo (2);
+           foo (3);
+         }
+       foo (4);
+      }
+  foo (5);
+}
+
+/* "indent -kr".  */
+void fn_34_indent_dash_kr(void)
+{
+    int i;
+    while (flagA)
+       for (i = 0; i < 10; i++) {
+           if (flagB) {
+               foo(0);
+               foo(1);
+           } else {
+               foo(2);
+               foo(3);
+           }
+           foo(4);
+       }
+    foo(5);
+}
+
+/* "indent -orig".  */
+void
+fn_34_indent_dash_orig(void)
+{
+    int             i;
+    while (flagA)
+       for (i = 0; i < 10; i++) {
+           if (flagB) {
+               foo(0);
+               foo(1);
+           } else {
+               foo(2);
+               foo(3);
+           }
+           foo(4);
+       }
+    foo(5);
+}
+
+/* Linux style:
+   "indent \
+      -nbad -bap -nbc -bbo -hnl -br -brs -c33 -cd33 -ncdb -ce -ci4  \
+      -cli0 -d0 -di1 -nfc1 -i8 -ip0 -l80 -lp -npcs -nprs -npsl -sai \
+      -saf -saw -ncs -nsc -sob -nfca -cp33 -ss -ts8 -il1".  */
+
+void fn_34_indent_linux_style(void)
+{
+       int i;
+       while (flagA)
+               for (i = 0; i < 10; i++) {
+                       if (flagB) {
+                               foo(0);
+                               foo(1);
+                       } else {
+                               foo(2);
+                               foo(3);
+                       }
+                       foo(4);
+               }
+       foo(5);
+}