Hi, This series seems to have some coding style problems. See output below for more information:
Type: series Message-id: 20171004103933.7898-1-quint...@redhat.com Subject: [Qemu-devel] [PATCH 0/6] Add make check tests for Migration === 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 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' 4aeb6111b4 tests: Move postcopy migration test to migrate-set-parameters 1c9b2bdb92 tests: Add migration compress threads tests 56c99c4814 tests: Add migration xbzrle test 576f38004b tests: Add precopy test using deprecated commands af499b81e9 tests: Add basic migration precopy tcp test 54217d4480 tests: Add basic migration precopy test === OUTPUT BEGIN === Checking PATCH 1/6: tests: Add basic migration precopy test... WARNING: architecture specific defines should be avoided #72: FILE: tests/migration-test.c:30: +#if defined(__linux__) total: 0 errors, 1 warnings, 518 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. Checking PATCH 2/6: tests: Add basic migration precopy tcp test... Checking PATCH 3/6: tests: Add precopy test using deprecated commands... Checking PATCH 4/6: tests: Add migration xbzrle test... Checking PATCH 5/6: tests: Add migration compress threads tests... ERROR: trailing whitespace #36: FILE: tests/migration-test.c:640: + migrate_set_parameter(from, "decompress-threads", "3"); $ total: 1 errors, 0 warnings, 63 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. Checking PATCH 6/6: tests: Move postcopy migration test to migrate-set-parameters... === OUTPUT END === Test command exited with code: 1 --- Email generated automatically by Patchew [http://patchew.org/]. Please send your feedback to patchew-de...@freelists.org