On Wed, Apr 18, 2018 at 05:52:26PM +0200, Peter Krempa wrote:
On Thu, Apr 12, 2018 at 09:45:32 +0200, Ján Tomko wrote:
> my tool for naively resolving qemu capabilities conflicts after a
> rebase, that used to contain my latest syntax-check addition
> ---
> rcc | 62 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
> 1 file changed, 62 insertions(+)
> create mode 100755 rcc
[...]
> +while (<$status_fh>) {
> + my ($flag, $filename) = split;
> + if ($flag eq 'UU') {
> + if ($filename =~ '^src/qemu/qemu_capabilities.[ch]$' or
> + $filename =~ '^tests/qemucapabilitiesdata/caps.*xml') {
> + say "Trying to fix $filename";
> + &union_merge($filename);
> + $repo->command('add', $filename);
> + }
> + }
> +}
> +$repo->command_close_pipe($status_fh, $ctx);
> +system('tests/group-qemu-caps.pl');
did you forget to attach this file? :)
https://www.redhat.com/archives/libvir-list/2018-April/msg00941.html
9e72a4444dd722b28a888165be3b9da0dddab907.1523518807.git.jtomko(a)redhat.com
[libvirt] [PATCH] syntax-check: check QEMU caps grouping
Jano