Hi, This series seems to have some coding style problems. See output below for more information:
Subject: [Qemu-devel] [PATCH v8 00/13] tests: Add VM based build tests (for non-x86_64 and/or non-Linux) Message-id: 20170918024402.3265-1-f...@redhat.com 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 Switched to a new branch 'test' eada89cb49 docker: Use archive-source.py edb516101b tests: Add README for vm tests 29ab56eed6 MAINTAINERS: Add tests/vm entry 91bbe52a91 Makefile: Add rules to run vm tests 850be050ce tests: Add OpenBSD image 793d0cde6b tests: Add NetBSD image 4fcfdb2879 tests: Add FreeBSD image 0186cba9b3 tests: Add ubuntu.i386 image 2cc2c41291 tests: Add vm test lib c6a859d5de tests: Add a test key pair ffc8ca2de4 scripts: Add archive-source.sh 0df34534b9 qemu.py: Add "wait()" method 7ed9b96668 gitignore: Ignore vm test images === OUTPUT BEGIN === Checking PATCH 1/13: gitignore: Ignore vm test images... Checking PATCH 2/13: qemu.py: Add "wait()" method... Checking PATCH 3/13: scripts: Add archive-source.sh... Checking PATCH 4/13: tests: Add a test key pair... Checking PATCH 5/13: tests: Add vm test lib... WARNING: line over 80 characters #71: FILE: tests/vm/basevm.py:46: + self._tmpdir = tempfile.mkdtemp(prefix="vm-test-", suffix=".tmp", dir=".") WARNING: line over 80 characters #162: FILE: tests/vm/basevm.py:137: + logging.debug("Creating archive %s for src_dir dir: %s", tarfile, src_dir) WARNING: line over 80 characters #167: FILE: tests/vm/basevm.py:142: + "file=%s,if=none,id=%s,cache=writeback,format=raw" % \ WARNING: line over 80 characters #170: FILE: tests/vm/basevm.py:145: + "virtio-blk,drive=%s,serial=%s,bootindex=1" % (name, name)] ERROR: line over 90 characters #225: FILE: tests/vm/basevm.py:200: + VM test utility. Exit codes: 0 = success, 1 = command line error, 2 = environment initialization failed, 3 = test command failed""") WARNING: line over 80 characters #232: FILE: tests/vm/basevm.py:207: + parser.add_option("--jobs", type=int, default=multiprocessing.cpu_count() / 2, total: 1 errors, 5 warnings, 256 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/13: tests: Add ubuntu.i386 image... Checking PATCH 7/13: tests: Add FreeBSD image... Checking PATCH 8/13: tests: Add NetBSD image... Checking PATCH 9/13: tests: Add OpenBSD image... Checking PATCH 10/13: Makefile: Add rules to run vm tests... Checking PATCH 11/13: MAINTAINERS: Add tests/vm entry... Checking PATCH 12/13: tests: Add README for vm tests... Checking PATCH 13/13: docker: Use archive-source.py... === 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