qemu-devel.nongnu.org archive mirror
 help / color / mirror / Atom feed
* [Qemu-devel] [PATCH 0/2] git.orderfile: Order Python/shell scripts before unordered files
@ 2019-08-29 10:05 Philippe Mathieu-Daudé
  2019-08-29 10:05 ` [Qemu-devel] [PATCH 1/2] scripts/git.orderfile: Order Python files before unordered ones Philippe Mathieu-Daudé
                   ` (5 more replies)
  0 siblings, 6 replies; 7+ messages in thread
From: Philippe Mathieu-Daudé @ 2019-08-29 10:05 UTC (permalink / raw)
  To: John Snow, qemu-devel; +Cc: Philippe Mathieu-Daudé, qemu-block

This series update the git.orderfile to order Python and shell
scripts before unordered files.
This is particularly useful for changes in tests/qemu-iotests.

Regards,

Phil.

Philippe Mathieu-Daudé (2):
  scripts/git.orderfile: Order Python files before unordered ones
  scripts/git.orderfile: Order shell scripts before unordered files

 scripts/git.orderfile | 5 +++++
 1 file changed, 5 insertions(+)

-- 
2.20.1



^ permalink raw reply	[flat|nested] 7+ messages in thread

* [Qemu-devel] [PATCH 1/2] scripts/git.orderfile: Order Python files before unordered ones
  2019-08-29 10:05 [Qemu-devel] [PATCH 0/2] git.orderfile: Order Python/shell scripts before unordered files Philippe Mathieu-Daudé
@ 2019-08-29 10:05 ` Philippe Mathieu-Daudé
  2019-08-29 10:05 ` [Qemu-devel] [PATCH 2/2] scripts/git.orderfile: Order shell scripts before unordered files Philippe Mathieu-Daudé
                   ` (4 subsequent siblings)
  5 siblings, 0 replies; 7+ messages in thread
From: Philippe Mathieu-Daudé @ 2019-08-29 10:05 UTC (permalink / raw)
  To: John Snow, qemu-devel; +Cc: Philippe Mathieu-Daudé, qemu-block

Order Python source files before the rest of unordered files.
This helps in particular while reviewing iotests.

Signed-off-by: Philippe Mathieu-Daudé <philmd@redhat.com>
---
 scripts/git.orderfile | 1 +
 1 file changed, 1 insertion(+)

diff --git a/scripts/git.orderfile b/scripts/git.orderfile
index ac699700b1..0ad5b9b8a8 100644
--- a/scripts/git.orderfile
+++ b/scripts/git.orderfile
@@ -26,4 +26,5 @@ Makefile*
 
 # code
 *.c
+*.py
 
-- 
2.20.1



^ permalink raw reply related	[flat|nested] 7+ messages in thread

* [Qemu-devel] [PATCH 2/2] scripts/git.orderfile: Order shell scripts before unordered files
  2019-08-29 10:05 [Qemu-devel] [PATCH 0/2] git.orderfile: Order Python/shell scripts before unordered files Philippe Mathieu-Daudé
  2019-08-29 10:05 ` [Qemu-devel] [PATCH 1/2] scripts/git.orderfile: Order Python files before unordered ones Philippe Mathieu-Daudé
@ 2019-08-29 10:05 ` Philippe Mathieu-Daudé
  2019-08-29 10:39 ` [Qemu-devel] [PATCH 0/2] git.orderfile: Order Python/shell " Eric Blake
                   ` (3 subsequent siblings)
  5 siblings, 0 replies; 7+ messages in thread
From: Philippe Mathieu-Daudé @ 2019-08-29 10:05 UTC (permalink / raw)
  To: John Snow, qemu-devel; +Cc: Philippe Mathieu-Daudé, qemu-block

Order shell scripts before the rest of unordered files.
This helps in particular while reviewing iotests.

Signed-off-by: Philippe Mathieu-Daudé <philmd@redhat.com>
---
 scripts/git.orderfile | 4 ++++
 1 file changed, 4 insertions(+)

diff --git a/scripts/git.orderfile b/scripts/git.orderfile
index 0ad5b9b8a8..4d25153ea4 100644
--- a/scripts/git.orderfile
+++ b/scripts/git.orderfile
@@ -28,3 +28,7 @@ Makefile*
 *.c
 *.py
 
+# shell scripts
+*.rc
+*.sh
+
-- 
2.20.1



^ permalink raw reply related	[flat|nested] 7+ messages in thread

* Re: [Qemu-devel] [PATCH 0/2] git.orderfile: Order Python/shell scripts before unordered files
  2019-08-29 10:05 [Qemu-devel] [PATCH 0/2] git.orderfile: Order Python/shell scripts before unordered files Philippe Mathieu-Daudé
  2019-08-29 10:05 ` [Qemu-devel] [PATCH 1/2] scripts/git.orderfile: Order Python files before unordered ones Philippe Mathieu-Daudé
  2019-08-29 10:05 ` [Qemu-devel] [PATCH 2/2] scripts/git.orderfile: Order shell scripts before unordered files Philippe Mathieu-Daudé
@ 2019-08-29 10:39 ` Eric Blake
  2019-08-29 11:00 ` [Qemu-devel] [Qemu-block] " Stefano Garzarella
                   ` (2 subsequent siblings)
  5 siblings, 0 replies; 7+ messages in thread
From: Eric Blake @ 2019-08-29 10:39 UTC (permalink / raw)
  To: Philippe Mathieu-Daudé, John Snow, qemu-devel; +Cc: qemu-block


[-- Attachment #1.1: Type: text/plain, Size: 607 bytes --]

On 8/29/19 5:05 AM, Philippe Mathieu-Daudé wrote:
> This series update the git.orderfile to order Python and shell
> scripts before unordered files.
> This is particularly useful for changes in tests/qemu-iotests.
> 
> Regards,
> 
> Phil.
> 
> Philippe Mathieu-Daudé (2):
>   scripts/git.orderfile: Order Python files before unordered ones
>   scripts/git.orderfile: Order shell scripts before unordered files
> 

Reviewed-by: Eric Blake <eblake@redhat.com>

-- 
Eric Blake, Principal Software Engineer
Red Hat, Inc.           +1-919-301-3226
Virtualization:  qemu.org | libvirt.org


[-- Attachment #2: OpenPGP digital signature --]
[-- Type: application/pgp-signature, Size: 488 bytes --]

^ permalink raw reply	[flat|nested] 7+ messages in thread

* Re: [Qemu-devel] [Qemu-block] [PATCH 0/2] git.orderfile: Order Python/shell scripts before unordered files
  2019-08-29 10:05 [Qemu-devel] [PATCH 0/2] git.orderfile: Order Python/shell scripts before unordered files Philippe Mathieu-Daudé
                   ` (2 preceding siblings ...)
  2019-08-29 10:39 ` [Qemu-devel] [PATCH 0/2] git.orderfile: Order Python/shell " Eric Blake
@ 2019-08-29 11:00 ` Stefano Garzarella
  2019-08-29 16:08 ` [Qemu-devel] " Philippe Mathieu-Daudé
  2019-08-29 17:35 ` John Snow
  5 siblings, 0 replies; 7+ messages in thread
From: Stefano Garzarella @ 2019-08-29 11:00 UTC (permalink / raw)
  To: Philippe Mathieu-Daudé; +Cc: John Snow, qemu-devel, qemu-block

On Thu, Aug 29, 2019 at 12:05:19PM +0200, Philippe Mathieu-Daudé wrote:
> This series update the git.orderfile to order Python and shell
> scripts before unordered files.
> This is particularly useful for changes in tests/qemu-iotests.
> 
> Regards,
> 
> Phil.
> 
> Philippe Mathieu-Daudé (2):
>   scripts/git.orderfile: Order Python files before unordered ones
>   scripts/git.orderfile: Order shell scripts before unordered files
> 
>  scripts/git.orderfile | 5 +++++
>  1 file changed, 5 insertions(+)

Reviewed-by: Stefano Garzarella <sgarzare@redhat.com>

Thanks,
Stefano


^ permalink raw reply	[flat|nested] 7+ messages in thread

* Re: [Qemu-devel] [PATCH 0/2] git.orderfile: Order Python/shell scripts before unordered files
  2019-08-29 10:05 [Qemu-devel] [PATCH 0/2] git.orderfile: Order Python/shell scripts before unordered files Philippe Mathieu-Daudé
                   ` (3 preceding siblings ...)
  2019-08-29 11:00 ` [Qemu-devel] [Qemu-block] " Stefano Garzarella
@ 2019-08-29 16:08 ` Philippe Mathieu-Daudé
  2019-08-29 17:35 ` John Snow
  5 siblings, 0 replies; 7+ messages in thread
From: Philippe Mathieu-Daudé @ 2019-08-29 16:08 UTC (permalink / raw)
  To: John Snow, qemu-devel; +Cc: QEMU Trivial, qemu-block

Oops Cc'ing qemu-trivial@nongnu.org

On 8/29/19 12:05 PM, Philippe Mathieu-Daudé wrote:
> This series update the git.orderfile to order Python and shell
> scripts before unordered files.
> This is particularly useful for changes in tests/qemu-iotests.
> 
> Regards,
> 
> Phil.
> 
> Philippe Mathieu-Daudé (2):
>   scripts/git.orderfile: Order Python files before unordered ones
>   scripts/git.orderfile: Order shell scripts before unordered files
> 
>  scripts/git.orderfile | 5 +++++
>  1 file changed, 5 insertions(+)


^ permalink raw reply	[flat|nested] 7+ messages in thread

* Re: [Qemu-devel] [PATCH 0/2] git.orderfile: Order Python/shell scripts before unordered files
  2019-08-29 10:05 [Qemu-devel] [PATCH 0/2] git.orderfile: Order Python/shell scripts before unordered files Philippe Mathieu-Daudé
                   ` (4 preceding siblings ...)
  2019-08-29 16:08 ` [Qemu-devel] " Philippe Mathieu-Daudé
@ 2019-08-29 17:35 ` John Snow
  5 siblings, 0 replies; 7+ messages in thread
From: John Snow @ 2019-08-29 17:35 UTC (permalink / raw)
  To: Philippe Mathieu-Daudé, qemu-devel; +Cc: qemu-block



On 8/29/19 6:05 AM, Philippe Mathieu-Daudé wrote:
> This series update the git.orderfile to order Python and shell
> scripts before unordered files.
> This is particularly useful for changes in tests/qemu-iotests.
> 
> Regards,
> 
> Phil.
> 
> Philippe Mathieu-Daudé (2):
>   scripts/git.orderfile: Order Python files before unordered ones
>   scripts/git.orderfile: Order shell scripts before unordered files
> 
>  scripts/git.orderfile | 5 +++++
>  1 file changed, 5 insertions(+)
> 

ACK, not that you need more reviews for a trivial patch:

Reviewed-by: John Snow <jsnow@redhat.com>


^ permalink raw reply	[flat|nested] 7+ messages in thread

end of thread, other threads:[~2019-08-29 17:43 UTC | newest]

Thread overview: 7+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2019-08-29 10:05 [Qemu-devel] [PATCH 0/2] git.orderfile: Order Python/shell scripts before unordered files Philippe Mathieu-Daudé
2019-08-29 10:05 ` [Qemu-devel] [PATCH 1/2] scripts/git.orderfile: Order Python files before unordered ones Philippe Mathieu-Daudé
2019-08-29 10:05 ` [Qemu-devel] [PATCH 2/2] scripts/git.orderfile: Order shell scripts before unordered files Philippe Mathieu-Daudé
2019-08-29 10:39 ` [Qemu-devel] [PATCH 0/2] git.orderfile: Order Python/shell " Eric Blake
2019-08-29 11:00 ` [Qemu-devel] [Qemu-block] " Stefano Garzarella
2019-08-29 16:08 ` [Qemu-devel] " Philippe Mathieu-Daudé
2019-08-29 17:35 ` John Snow

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).