trace: [tracetool] Show list of frontends and backends sorted by name
authorLluís Vilanova <vilanova@ac.upc.edu>
Sun, 23 Feb 2014 19:37:24 +0000 (20:37 +0100)
committerStefan Hajnoczi <stefanha@redhat.com>
Wed, 7 May 2014 17:07:18 +0000 (19:07 +0200)
Signed-off-by: Lluís Vilanova <vilanova@ac.upc.edu>
Signed-off-by: Stefan Hajnoczi <stefanha@redhat.com>
scripts/tracetool/backend/__init__.py
scripts/tracetool/format/__init__.py

index f0314ee3763805aea218b8f5cfb88b9881a6dccf..88f94fd3f543862012365c7cb02e3cebb2b01064 100644 (file)
@@ -59,7 +59,7 @@ def get_list(only_public = False):
     for filename in os.listdir(tracetool.backend.__path__[0]):
         if filename.endswith('.py') and filename != '__init__.py':
             modnames.append(filename.rsplit('.', 1)[0])
-    for modname in modnames:
+    for modname in sorted(modnames):
         module = tracetool.try_import("tracetool.backend." + modname)
 
         # just in case; should never fail unless non-module files are put there
index 3c2a0d89e081147f872fe41ac0df7d940967ecde..2bbbba7011c61d4e6c6fed1660d17eca7d65e882 100644 (file)
@@ -34,7 +34,7 @@ nop      Called to generate the per-event contents when the event is disabled or
 """
 
 __author__     = "Lluís Vilanova <vilanova@ac.upc.edu>"
-__copyright__  = "Copyright 2012, Lluís Vilanova <vilanova@ac.upc.edu>"
+__copyright__  = "Copyright 2012-2014, Lluís Vilanova <vilanova@ac.upc.edu>"
 __license__    = "GPL version 2 or (at your option) any later version"
 
 __maintainer__ = "Stefan Hajnoczi"
@@ -53,7 +53,7 @@ def get_list():
     for filename in os.listdir(tracetool.format.__path__[0]):
         if filename.endswith('.py') and filename != '__init__.py':
             modnames.append(filename.rsplit('.', 1)[0])
-    for modname in modnames:
+    for modname in sorted(modnames):
         module = tracetool.try_import("tracetool.format." + modname)
 
         # just in case; should never fail unless non-module files are put there