* [Qemu-devel] [PATCH] iotests: Mark all tests executable
@ 2018-03-02 13:49 Eric Blake
2018-03-02 14:18 ` Fam Zheng
2018-03-05 15:56 ` Max Reitz
0 siblings, 2 replies; 4+ messages in thread
From: Eric Blake @ 2018-03-02 13:49 UTC (permalink / raw)
To: qemu-devel; +Cc: qemu-block, mreitz
The majority of our iotests have the executable bit set; fix the
few outliers for consistency.
Signed-off-by: Eric Blake <eblake@redhat.com>
---
Let's see if patchew groks this one :)
tests/qemu-iotests/096 | 0
tests/qemu-iotests/129 | 0
tests/qemu-iotests/132 | 0
tests/qemu-iotests/136 | 0
tests/qemu-iotests/139 | 0
tests/qemu-iotests/148 | 0
tests/qemu-iotests/152 | 0
tests/qemu-iotests/163 | 0
tests/qemu-iotests/205 | 0
9 files changed, 0 insertions(+), 0 deletions(-)
mode change 100644 => 100755 tests/qemu-iotests/096
mode change 100644 => 100755 tests/qemu-iotests/129
mode change 100644 => 100755 tests/qemu-iotests/132
mode change 100644 => 100755 tests/qemu-iotests/136
mode change 100644 => 100755 tests/qemu-iotests/139
mode change 100644 => 100755 tests/qemu-iotests/148
mode change 100644 => 100755 tests/qemu-iotests/152
mode change 100644 => 100755 tests/qemu-iotests/163
mode change 100644 => 100755 tests/qemu-iotests/205
diff --git a/tests/qemu-iotests/096 b/tests/qemu-iotests/096
old mode 100644
new mode 100755
diff --git a/tests/qemu-iotests/129 b/tests/qemu-iotests/129
old mode 100644
new mode 100755
diff --git a/tests/qemu-iotests/132 b/tests/qemu-iotests/132
old mode 100644
new mode 100755
diff --git a/tests/qemu-iotests/136 b/tests/qemu-iotests/136
old mode 100644
new mode 100755
diff --git a/tests/qemu-iotests/139 b/tests/qemu-iotests/139
old mode 100644
new mode 100755
diff --git a/tests/qemu-iotests/148 b/tests/qemu-iotests/148
old mode 100644
new mode 100755
diff --git a/tests/qemu-iotests/152 b/tests/qemu-iotests/152
old mode 100644
new mode 100755
diff --git a/tests/qemu-iotests/163 b/tests/qemu-iotests/163
old mode 100644
new mode 100755
diff --git a/tests/qemu-iotests/205 b/tests/qemu-iotests/205
old mode 100644
new mode 100755
--
2.14.3
^ permalink raw reply [flat|nested] 4+ messages in thread
* Re: [Qemu-devel] [PATCH] iotests: Mark all tests executable
2018-03-02 13:49 [Qemu-devel] [PATCH] iotests: Mark all tests executable Eric Blake
@ 2018-03-02 14:18 ` Fam Zheng
2018-03-05 15:56 ` Max Reitz
1 sibling, 0 replies; 4+ messages in thread
From: Fam Zheng @ 2018-03-02 14:18 UTC (permalink / raw)
To: Eric Blake; +Cc: QEMU Developers, qemu-block, Max Reitz
On Fri, Mar 2, 2018 at 9:49 PM, Eric Blake <eblake@redhat.com> wrote:
> The majority of our iotests have the executable bit set; fix the
> few outliers for consistency.
>
> Signed-off-by: Eric Blake <eblake@redhat.com>
> ---
>
> Let's see if patchew groks this one :)
You've caught it! Patchew looks for all of
"---",
"diff ",
"index ",
"---",
"+++",
"@@")
prefixes at the beginning of the lines. This patch doesn't have the
last four, so it doesn't think this is a patch.
It needs to be taught to understand mode changes and binary patches.
Fam
^ permalink raw reply [flat|nested] 4+ messages in thread
* Re: [Qemu-devel] [PATCH] iotests: Mark all tests executable
2018-03-02 13:49 [Qemu-devel] [PATCH] iotests: Mark all tests executable Eric Blake
2018-03-02 14:18 ` Fam Zheng
@ 2018-03-05 15:56 ` Max Reitz
2018-03-05 16:16 ` Eric Blake
1 sibling, 1 reply; 4+ messages in thread
From: Max Reitz @ 2018-03-05 15:56 UTC (permalink / raw)
To: Eric Blake, qemu-devel; +Cc: qemu-block
[-- Attachment #1: Type: text/plain, Size: 237 bytes --]
On 2018-03-02 14:49, Eric Blake wrote:
> The majority of our iotests have the executable bit set; fix the
> few outliers for consistency.
>
> Signed-off-by: Eric Blake <eblake@redhat.com>
> ---
I think 124 is missing.
Max
[-- Attachment #2: OpenPGP digital signature --]
[-- Type: application/pgp-signature, Size: 512 bytes --]
^ permalink raw reply [flat|nested] 4+ messages in thread
* Re: [Qemu-devel] [PATCH] iotests: Mark all tests executable
2018-03-05 15:56 ` Max Reitz
@ 2018-03-05 16:16 ` Eric Blake
0 siblings, 0 replies; 4+ messages in thread
From: Eric Blake @ 2018-03-05 16:16 UTC (permalink / raw)
To: Max Reitz, qemu-devel; +Cc: qemu-block
On 03/05/2018 09:56 AM, Max Reitz wrote:
> On 2018-03-02 14:49, Eric Blake wrote:
>> The majority of our iotests have the executable bit set; fix the
>> few outliers for consistency.
>>
>> Signed-off-by: Eric Blake <eblake@redhat.com>
>> ---
>
> I think 124 is missing.
Good catch. Yes, it is, and I'll spin v2.
--
Eric Blake, Principal Software Engineer
Red Hat, Inc. +1-919-301-3266
Virtualization: qemu.org | libvirt.org
^ permalink raw reply [flat|nested] 4+ messages in thread
end of thread, other threads:[~2018-03-05 16:16 UTC | newest]
Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2018-03-02 13:49 [Qemu-devel] [PATCH] iotests: Mark all tests executable Eric Blake
2018-03-02 14:18 ` Fam Zheng
2018-03-05 15:56 ` Max Reitz
2018-03-05 16:16 ` Eric Blake
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).