]> xenbits.xensource.com Git - qemu-xen.git/commitdiff
scripts/cleanup-trace-events: Emit files in alphabetical order
authorMarkus Armbruster <armbru@redhat.com>
Thu, 6 Aug 2020 14:13:32 +0000 (16:13 +0200)
committerStefan Hajnoczi <stefanha@redhat.com>
Wed, 9 Sep 2020 16:17:00 +0000 (17:17 +0100)
Signed-off-by: Markus Armbruster <armbru@redhat.com>
Message-id: 20200806141334.3646302-3-armbru@redhat.com
Signed-off-by: Stefan Hajnoczi <stefanha@redhat.com>
scripts/cleanup-trace-events.pl

index 6c3767bd6a466ce54d2064e5db4f76d52b56c705..c40d2fcc5016d6acd2caa7f7a8677220fac2ca65 100755 (executable)
@@ -15,12 +15,15 @@ use warnings;
 use strict;
 use File::Basename;
 
-my $buf = '';
+my @files = ();
+my $events = '';
 my %seen = ();
 
 sub out {
-    print $buf;
-    $buf = '';
+    print sort @files;
+    print $events;
+    @files = ();
+    $events = '';
     %seen = ();
 }
 
@@ -42,7 +45,7 @@ while (<IN>) {
             chomp $fname;
             next if $seen{$fname} || $fname eq 'trace-events';
             $seen{$fname} = 1;
-            $buf = "# $fname\n" . $buf;
+            push @files, "# $fname\n";
         }
         unless (close GREP) {
             die "close git grep: $!"
@@ -55,7 +58,7 @@ while (<IN>) {
     } elsif (!/^#|^$/) {
         warn "unintelligible line";
     }
-    $buf .= $_;
+    $events .= $_;
 }
 
 out;