Hi, This series seems to have some coding style problems. See output below for more information:
Type: series Message-id: 20180420181951.7252-1-ehabk...@redhat.com Subject: [Qemu-devel] [RFC 00/24] Avocado-based functional tests === 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 From https://github.com/patchew-project/qemu * [new tag] patchew/20180420181951.7252-1-ehabk...@redhat.com -> patchew/20180420181951.7252-1-ehabk...@redhat.com Switched to a new branch 'test' ec49778cf4 avocado_qemu: Add a few VNC related tests 1f46f502ab avocado_qemu: Force vmimage distro 3c652684e4 avocado_qemu: Tests fixes c4e2d71898 avocado_qemu: Introduce the add_image() VM API 35b9856b7d avocado_qemu: Set QMP log level to INFO 3d81ee79d0 avocado_qemu: Clean unneeded 'pass' 3fea592db2 avocado_qemu: Simplify the installation instructions d1b9960835 avocado_qemu: Remove duplicate PortTracker implementation 030c3444fa avocado_qemu: Functional test for RHBZ1473203 4452f51949 avocado_qemu: Functional test for RHBZ#1436616 a791819b84 avocado_qemu: Functional test for RHBZ#1447027 1b525617c2 avocado_qemu: Functional test for RHBZ#1431939 8cb3174c7d avocado_qemu: Improve migration error message 800fdc0407 avocado_qemu: Fix exception name in caller 487b76eeea avocado_qemu: Add support to request image for testing 2349952ea0 avocado_qemu: Ignore kernel messages on get_console ee1ba766ab avocado_qemu: Provide defaults for user and pass 2151fc0647 avocado_qemu: Store "arch" in VM 27d897fc64 avocado_qemu: Add " " after the default prompt regexp 1b31385780 avocado_qemu: Increase the login timeout to 60s f964227931 avocado_qemu: Be lenient towards poluted serial console 903c5ccd71 avocado_qemu: Improve handle_prompts to allow login after booted vm 46e5bdc04f Introduce the basic framework to run Avocado tests 9a629a9861 qemu.py: Introduce _create_console() method === OUTPUT BEGIN === Checking PATCH 1/24: qemu.py: Introduce _create_console() method... Checking PATCH 2/24: Introduce the basic framework to run Avocado tests... WARNING: line over 80 characters #311: FILE: tests/avocado/avocado_qemu/test.py:118: + :raise QEMULoginProcessTerminatedError: If the client terminates during login WARNING: line over 80 characters #399: FILE: tests/avocado/avocado_qemu/test.py:206: + raise QEMULoginProcessTerminatedError(details.status, details.output) total: 0 errors, 2 warnings, 661 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 3/24: avocado_qemu: Improve handle_prompts to allow login after booted vm... Checking PATCH 4/24: avocado_qemu: Be lenient towards poluted serial console... Checking PATCH 5/24: avocado_qemu: Increase the login timeout to 60s... Checking PATCH 6/24: avocado_qemu: Add " " after the default prompt regexp... Checking PATCH 7/24: avocado_qemu: Store "arch" in VM... Checking PATCH 8/24: avocado_qemu: Provide defaults for user and pass... Checking PATCH 9/24: avocado_qemu: Ignore kernel messages on get_console... Checking PATCH 10/24: avocado_qemu: Add support to request image for testing... Checking PATCH 11/24: avocado_qemu: Fix exception name in caller... Checking PATCH 12/24: avocado_qemu: Improve migration error message... Checking PATCH 13/24: avocado_qemu: Functional test for RHBZ#1431939... WARNING: line over 80 characters #73: FILE: tests/avocado/test_info_memdev_host_nodes.py:49: + cmd = 'object_add memory-backend-ram,id=mem1,host-nodes=0,size=2G,policy=bind' total: 0 errors, 1 warnings, 66 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 14/24: avocado_qemu: Functional test for RHBZ#1447027... ERROR: line over 90 characters #51: FILE: tests/avocado/test_ovmf_with_240_vcpus.py:22: + default='/usr/share/edk2/ovmf/OVMF_CODE.secboot.fd') WARNING: line over 80 characters #53: FILE: tests/avocado/test_ovmf_with_240_vcpus.py:24: + default='/usr/share/edk2/ovmf/OVMF_VARS.fd') total: 1 errors, 1 warnings, 72 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 15/24: avocado_qemu: Functional test for RHBZ#1436616... WARNING: line over 80 characters #53: FILE: tests/avocado/test_nec-usb-xhci.py:24: + self.vm.args.extend(['-device', 'nec-usb-xhci,id=xhci1,bus=bridge1,addr=0x3']) ERROR: line over 90 characters #54: FILE: tests/avocado/test_nec-usb-xhci.py:25: + self.vm.args.extend(['-drive', 'file=%s,format=raw,id=drive_usb,if=none' % usbdevice]) ERROR: line over 90 characters #55: FILE: tests/avocado/test_nec-usb-xhci.py:26: + self.vm.args.extend(['-device', 'usb-storage,drive=drive_usb,id=device_usb,bus=xhci1.0']) total: 2 errors, 1 warnings, 59 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 16/24: avocado_qemu: Functional test for RHBZ1473203... Checking PATCH 17/24: avocado_qemu: Remove duplicate PortTracker implementation... Checking PATCH 18/24: avocado_qemu: Simplify the installation instructions... Checking PATCH 19/24: avocado_qemu: Clean unneeded 'pass'... Checking PATCH 20/24: avocado_qemu: Set QMP log level to INFO... Checking PATCH 21/24: avocado_qemu: Introduce the add_image() VM API... Checking PATCH 22/24: avocado_qemu: Tests fixes... Checking PATCH 23/24: avocado_qemu: Force vmimage distro... Checking PATCH 24/24: avocado_qemu: Add a few VNC related tests... === 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