Message-id: 20170609124313.8026-1-jcody@redhat.com
Type: series
Subject: [Qemu-devel] [PULL 0/1] Block patches

=== 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/1497013453-13688-1-git-send-email-peterx@redhat.com -> patchew/1497013453-13688-1-git-send-email-peterx@redhat.com
 - [tag update]      patchew/20170602112158.232757-1-vsementsov@virtuozzo.com -> patchew/20170602112158.232757-1-vsementsov@virtuozzo.com
Switched to a new branch 'test'
115748a block/gluster.c: Handle qdict_array_entries() failure

=== OUTPUT BEGIN ===
Checking PATCH 1/1: block/gluster.c: Handle qdict_array_entries() failure...
=== OUTPUT END ===

Test command exited with code: 0