Hi, This series seems to have some coding style problems. See output below for more information:
Message-id: 20170828174707.20786-1-f...@redhat.com Subject: [Qemu-devel] [PATCH v4 00/10] tests: Add VM based build tests (for non-x86_64 and/or non-Linux) Type: series === 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 From https://github.com/patchew-project/qemu * [new tag] patchew/20170828174707.20786-1-f...@redhat.com -> patchew/20170828174707.20786-1-f...@redhat.com Switched to a new branch 'test' f3b1bda848 tests: Add README for vm tests 04700be074 MAINTAINERS: Add tests/vm entry a0ca710c91 Makefile: Add rules to run vm tests 4c0b2bd683 tests: Add OpenBSD image d80c217349 tests: Add NetBSD image 6626fdfad5 tests: Add FreeBSD image e5c04f2943 tests: Add ubuntu.i386 image bb43450459 tests: Add vm test lib 3c32f56fea qemu.py: Add "wait()" method 349a29d4ad gitignore: Ignore vm test images === OUTPUT BEGIN === Checking PATCH 1/10: gitignore: Ignore vm test images... Checking PATCH 2/10: qemu.py: Add "wait()" method... Checking PATCH 3/10: tests: Add vm test lib... ERROR: line over 90 characters #85: FILE: tests/vm/basevm.py:60: +ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCikC46WYtXotUd0UGPz9547Aj0KqC4gk+nt4BBJm86IHgCD9FygSGX9EFutXlhz9KZIPg9Okk7+IzXRHCWI2MNvhrcjyrezKREm71z08j9iwfxY3340fY2Mo+0khwpO7bzsgzkljHIHqcOg7MgttPInVMNH/EfqpgR8EDKJuWCB2Ny+EBFN/3dAiff0X/EvKle9PUrY70EkSycnyURS8HZReEqj8lN9J5kXzA8F6jBo/0Q42Ttv6e4k5YcaDrwmLrBWLra2PCXZLNyHqXEiFkGmdXtA1Eox9gc/p4jIXim6xrPNmpN6WyrrEjaCF5xYvNv8wXkD6uSWwbHYU24lIAn qemu-vm-key WARNING: line over 80 characters #206: FILE: tests/vm/basevm.py:181: + "file=%s,if=none,id=%s,cache=writeback,format=raw" % \ WARNING: line over 80 characters #209: FILE: tests/vm/basevm.py:184: + "virtio-blk,drive=%s,serial=%s,bootindex=1" % (name, name)] ERROR: line over 90 characters #256: FILE: tests/vm/basevm.py:231: + VM test utility. Exit codes: 0 = success, 1 = command line error, 2 = environment initialization failed, 3 = test command failed""") total: 2 errors, 2 warnings, 287 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 4/10: tests: Add ubuntu.i386 image... Checking PATCH 5/10: tests: Add FreeBSD image... Checking PATCH 6/10: tests: Add NetBSD image... Checking PATCH 7/10: tests: Add OpenBSD image... Checking PATCH 8/10: Makefile: Add rules to run vm tests... Checking PATCH 9/10: MAINTAINERS: Add tests/vm entry... Checking PATCH 10/10: tests: Add README for vm tests... === 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