All of lore.kernel.org
 help / color / mirror / Atom feed
From: Ishani Chugh <chugh.ishani@research.iiit.ac.in>
To: xen-devel@lists.xenproject.org
Cc: lars.kurth.xen@gmail.com,
	Ishani Chugh <chugh.ishani@research.iiit.ac.in>,
	cardoe@cardoe.com
Subject: [PATCH] Add clang-format file for Xen Hypervisor format
Date: Wed, 12 Apr 2017 16:19:45 +0530	[thread overview]
Message-ID: <1491994185-22960-1-git-send-email-chugh.ishani@research.iiit.ac.in> (raw)

Signed-off-by: Ishani Chugh <chugh.ishani@research.iiit.ac.in>
---
 tools/clang-format/tests/.clang-format | 88 ++++++++++++++++++++++++++++++++++
 tools/clang-format/tests/correct.c     | 73 ++++++++++++++++++++++++++++
 tools/clang-format/tests/test.c        | 69 ++++++++++++++++++++++++++
 3 files changed, 230 insertions(+)
 create mode 100644 tools/clang-format/tests/.clang-format
 create mode 100644 tools/clang-format/tests/correct.c
 create mode 100644 tools/clang-format/tests/test.c

diff --git a/tools/clang-format/tests/.clang-format b/tools/clang-format/tests/.clang-format
new file mode 100644
index 0000000..2229910
--- /dev/null
+++ b/tools/clang-format/tests/.clang-format
@@ -0,0 +1,88 @@
+---
+Language:        Cpp
+# BasedOnStyle:  LLVM
+AccessModifierOffset: 0
+AlignAfterOpenBracket: Align
+AlignConsecutiveAssignments: false
+AlignConsecutiveDeclarations: false
+AlignEscapedNewlinesLeft: true
+AlignOperands:   true
+AlignTrailingComments: true
+AllowAllParametersOfDeclarationOnNextLine: true
+AllowShortBlocksOnASingleLine: false
+AllowShortCaseLabelsOnASingleLine: false
+AllowShortFunctionsOnASingleLine: All
+AllowShortIfStatementsOnASingleLine: false
+AllowShortLoopsOnASingleLine: false
+AlwaysBreakAfterDefinitionReturnType: None
+AlwaysBreakAfterReturnType: None
+AlwaysBreakBeforeMultilineStrings: false
+AlwaysBreakTemplateDeclarations: true
+BinPackArguments: false
+BinPackParameters: false
+BraceWrapping:   
+  AfterClass:      true
+  AfterControlStatement: true
+  AfterEnum:       true
+  AfterFunction:   true
+  AfterNamespace:  true
+  AfterObjCDeclaration: true
+  AfterStruct:     true
+  AfterUnion:      true
+  BeforeCatch:     true
+  BeforeElse:      true
+  IndentBraces:    false
+BreakBeforeBinaryOperators: None
+BreakBeforeBraces: Custom
+BreakBeforeTernaryOperators: true
+BreakConstructorInitializersBeforeComma: false
+ColumnLimit:     80
+CommentPragmas:  '^ IWYU pragma:'
+ContinuationIndentWidth: 4
+Cpp11BracedListStyle: true
+DerivePointerAlignment: false
+DisableFormat:   false
+ExperimentalAutoDetectBinPacking: false
+ForEachMacros:   [ foreach, Q_FOREACH, BOOST_FOREACH ]
+IncludeCategories: 
+  - Regex:           '^"(llvm|llvm-c|clang|clang-c)/'
+    Priority:        2
+  - Regex:           '^(<|"(gtest|isl|json)/)'
+    Priority:        3
+  - Regex:           '.*'
+    Priority:        1
+IndentCaseLabels: false
+IndentWidth:     4
+IndentWrappedFunctionNames: false
+KeepEmptyLinesAtTheStartOfBlocks: false
+MacroBlockBegin: ''
+MacroBlockEnd:   ''
+MaxEmptyLinesToKeep: 1
+NamespaceIndentation: None
+ObjCBlockIndentWidth: 2
+ObjCSpaceAfterProperty: false
+ObjCSpaceBeforeProtocolList: true
+PenaltyBreakBeforeFirstCallParameter: 19
+PenaltyBreakComment: 300
+PenaltyBreakFirstLessLess: 120
+PenaltyBreakString: 1000
+PenaltyExcessCharacter: 1000000
+PenaltyReturnTypeOnItsOwnLine: 60
+PointerAlignment: Left
+ReflowComments:  true
+SortIncludes:    false
+SpaceAfterCStyleCast: false
+SpaceBeforeAssignmentOperators: true
+SpaceBeforeParens: ControlStatements
+SpaceInEmptyParentheses: false
+SpacesBeforeTrailingComments: 1
+SpacesInAngles:  false
+SpacesInContainerLiterals: true
+SpacesInCStyleCastParentheses: true
+SpacesInParentheses: true
+SpacesInSquareBrackets: false
+Standard:        Cpp11
+TabWidth:        4
+UseTab:          Never
+...
+
diff --git a/tools/clang-format/tests/correct.c b/tools/clang-format/tests/correct.c
new file mode 100644
index 0000000..882d50a
--- /dev/null
+++ b/tools/clang-format/tests/correct.c
@@ -0,0 +1,73 @@
+/*
+This is used to check if includes are sorted or not
+*/
+#include <unistd.h>
+#include <stdio.h>
+#define true 1
+
+struct sample
+{
+    int a;
+};
+
+/*
+This is used to check support for small function in a line
+*/
+int a( int x, int y ) {}
+
+int main()
+{
+    // This will test indentation
+
+    if ( true )
+    {
+        if ( true )
+        {
+            printf( "this should be indented\n" );
+            if ( true )
+            {
+                printf( "this should be indented too\n" );
+            }
+        }
+    }
+
+    /*
+    This will check whitespaces format
+    */
+
+    if ( ( 1 & 2 ) == 42 )
+        printf( "dfadsf\n" );
+
+    /*
+    This will test that whitespaces are not added for . and -> and the left position of *
+    */
+    struct sample ob;
+    struct sample* ob1;
+    ob.a = 10;
+    ob1->a = 10;
+    int x;
+    int y;
+    char* p;
+
+    /*
+    This will break the line. It also checks addition of spaces in binary operators
+    */
+    if ( 1 > 2 && 1 > 2 && 1 > 2 && 1 > 2 && 1 > 2 && 1 > 2 && 1 > 2 && 1 > 2 &&
+         1 > 2 && 1 > 2 && 1 > 2 && 1 > 2 && 1 > 2 && 1 > 2 && 1 > 2 && 1 > 2 )
+        p = "adsaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa"
+            "aaaaaaaaaaaaaaaaaaaaa";
+    printf( "adddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddd"
+            "dddddddddddddddddadad" );
+
+    for ( ;; )
+    {
+        int z = 5;
+        break;
+    }
+    /*
+    Check for template break in template
+    */
+    template <class P>
+    void updateMenuList( P*, struct menu* );
+    return 0;
+}
\ No newline at end of file
diff --git a/tools/clang-format/tests/test.c b/tools/clang-format/tests/test.c
new file mode 100644
index 0000000..2e7eaf2
--- /dev/null
+++ b/tools/clang-format/tests/test.c
@@ -0,0 +1,69 @@
+/*
+This is used to check if includes are sorted or not
+*/
+#include<unistd.h>
+#include<stdio.h>
+#define true 1
+
+struct sample{
+	int a;
+};
+
+/*
+This is used to check support for small function in a line
+*/
+int a(int x, int y)
+{}
+
+int main()
+{
+	//This will test indentation
+
+if(true)
+{
+if(true)
+{
+printf("this should be indented\n");
+if(true)
+{
+printf("this should be indented too\n");
+			}
+}
+}
+
+/*
+This will check whitespaces format
+*/
+
+if((1&2)==42)
+printf("dfadsf\n" );
+
+/*
+This will test that whitespaces are not added for . and -> and the left position of *
+*/
+ struct sample ob;
+ struct sample* ob1;
+ob.a = 10;
+ob1->a =10;
+	int x;
+	int y;
+	char *p;
+
+/*
+This will break the line. It also checks addition of spaces in binary operators
+*/
+	if (1>2 && 1>2 && 1>2 && 1>2 && 1>2 && 1>2 && 1>2 && 1>2 && 1>2 && 1>2 && 1>2 && 1>2 && 1>2 && 1>2 && 1>2 && 1>2)
+	p = "adsaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa";
+	printf("addddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddadad");
+
+	for(;;)
+		{
+		int z = 5;
+break;
+}
+/*
+Check for template break in template
+*/
+template <class P>	void updateMenuList(P*, struct menu*);
+	return 0;
+}
\ No newline at end of file
-- 
2.7.4


_______________________________________________
Xen-devel mailing list
Xen-devel@lists.xen.org
https://lists.xen.org/xen-devel

             reply	other threads:[~2017-04-12 10:50 UTC|newest]

Thread overview: 7+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2017-04-12 10:49 Ishani Chugh [this message]
2017-04-12 11:26 ` [PATCH] Add clang-format file for Xen Hypervisor format Lars Kurth
2017-04-12 11:51   ` Ishani
2017-04-12 12:14     ` Lars Kurth
2017-04-12 15:16 ` Jan Beulich
2017-04-12 15:38   ` Ishani
2017-04-18 15:37     ` Lars Kurth

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=1491994185-22960-1-git-send-email-chugh.ishani@research.iiit.ac.in \
    --to=chugh.ishani@research.iiit.ac.in \
    --cc=cardoe@cardoe.com \
    --cc=lars.kurth.xen@gmail.com \
    --cc=xen-devel@lists.xenproject.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.