summary refs log tree commit diff stats
path: root/scripts/qemu.py
diff options
context:
space:
mode:
authorSu Hang <suhang16@mails.ucas.ac.cn>2018-03-06 15:04:50 +0800
committerPaolo Bonzini <pbonzini@redhat.com>2018-03-06 14:01:28 +0100
commit2b9aef6fcd96ba7ed8c1ee723e391901852d344c (patch)
treefa569a91844570f495786edf9a47cf43ded9b243 /scripts/qemu.py
parentfb8446d94ec7a3dc0c3a7e7da672406476f075ac (diff)
downloadfocaccia-qemu-2b9aef6fcd96ba7ed8c1ee723e391901852d344c.tar.gz
focaccia-qemu-2b9aef6fcd96ba7ed8c1ee723e391901852d344c.zip
checkpatch: add check for `while` and `for`
Adding check for `while` and `for` statements, which condition has more than
one line.

The former checkpatch.pl can check `if` statement, which condition has more
than one line, whether block misses brace round, like this:
'''
if (cond1 ||
    cond2)
    statement;
'''
But it doesn't do the same check for `for` and `while` statements.

Using `(?:...)` instead of `(...)` in regex pattern catch.
Because `(?:...)` is faster and avoids unwanted side-effect.

Suggested-by: Stefan Hajnoczi <stefanha@redhat.com>
Suggested-by: Eric Blake <eblake@redhat.com>
Suggested-by: Thomas Huth <thuth@redhat.com>
Signed-off-by: Su Hang <suhang16@mails.ucas.ac.cn>
Message-Id: <1520319890-19761-1-git-send-email-suhang16@mails.ucas.ac.cn>
Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
Diffstat (limited to 'scripts/qemu.py')
0 files changed, 0 insertions, 0 deletions