Hi, This series seems to have some coding style problems. See output below for more information:
Type: series Subject: [Qemu-devel] [PATCH] glib-compat: work around g_test_message bug with subprocess tests Message-id: 1543343726-53531-1-git-send-email-pbonz...@redhat.com === TEST SCRIPT BEGIN === #!/bin/bash BASE=base n=1 total=$(git log --oneline $BASE.. | wc -l) failed=0 git config --local diff.renamelimit 0 git config --local diff.renames True git config --local diff.algorithm histogram commits="$(git log --format=%H --reverse $BASE..)" for c in $commits; do echo "Checking PATCH $n/$total: $(git log -n 1 --format=%s $c)..." if ! git show $c --format=email | ./scripts/checkpatch.pl --mailback -; then failed=1 echo fi n=$((n+1)) done exit $failed === TEST SCRIPT END === Updating 3c8cf5a9c21ff8782164d1def7f44bd888713384 Switched to a new branch 'test' 062e659 glib-compat: work around g_test_message bug with subprocess tests === OUTPUT BEGIN === Checking PATCH 1/1: glib-compat: work around g_test_message bug with subprocess tests... WARNING: line over 80 characters #30: FILE: include/glib-compat.h:117: +#define g_test_message(...) \ ERROR: code indent should never use tabs #30: FILE: include/glib-compat.h:117: +#define g_test_message(...)^I^I^I^I^I^I^I\$ WARNING: line over 80 characters #31: FILE: include/glib-compat.h:118: + do { \ ERROR: code indent should never use tabs #31: FILE: include/glib-compat.h:118: +^Ido {^I^I^I^I^I^I^I^I^I\$ WARNING: line over 80 characters #32: FILE: include/glib-compat.h:119: + if (!g_test_subprocess()) g_test_message(__VA_ARGS__); \ ERROR: code indent should never use tabs #32: FILE: include/glib-compat.h:119: +^I^Iif (!g_test_subprocess()) g_test_message(__VA_ARGS__);^I^I\$ ERROR: trailing statements should be on next line #32: FILE: include/glib-compat.h:119: + if (!g_test_subprocess()) g_test_message(__VA_ARGS__); \ ERROR: braces {} are necessary for all arms of this statement #32: FILE: include/glib-compat.h:119: + if (!g_test_subprocess()) g_test_message(__VA_ARGS__); \ [...] ERROR: code indent should never use tabs #33: FILE: include/glib-compat.h:120: +^I} while (0)$ total: 6 errors, 3 warnings, 10 lines checked Your patch has style problems, please review. If any of these errors are false positives report them to the maintainer, see CHECKPATCH in MAINTAINERS. === OUTPUT END === Test command exited with code: 1 --- Email generated automatically by Patchew [http://patchew.org/]. Please send your feedback to patchew-de...@redhat.com