Gitweb links:

...log 
http://git.netsurf-browser.org/netsurf-test.git/shortlog/48f3df0633eead0028391c5b980eb989d14eb34e
...commit 
http://git.netsurf-browser.org/netsurf-test.git/commit/48f3df0633eead0028391c5b980eb989d14eb34e
...tree 
http://git.netsurf-browser.org/netsurf-test.git/tree/48f3df0633eead0028391c5b980eb989d14eb34e

The branch, master has been updated
       via  48f3df0633eead0028391c5b980eb989d14eb34e (commit)
      from  41dc90b68400e2827578c733ec583f14ff23a9eb (commit)

Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.

- Log -----------------------------------------------------------------
commitdiff 
http://git.netsurf-browser.org/netsurf-test.git/commit/?id=48f3df0633eead0028391c5b980eb989d14eb34e
commit 48f3df0633eead0028391c5b980eb989d14eb34e
Author: Vincent Sanders <[email protected]>
Commit: Vincent Sanders <[email protected]>

    sort the test filenames to provide consistant results

diff --git a/cgi-bin/monkey-index.cgi b/cgi-bin/monkey-index.cgi
index 3d3b380..4ae41f6 100755
--- a/cgi-bin/monkey-index.cgi
+++ b/cgi-bin/monkey-index.cgi
@@ -47,7 +47,7 @@ def main():
     flist.extend(os.path.join(division, f) for f in os.listdir(testroot + '/' 
+ division) if f.endswith('.yaml'))
 
     # load all test plan yaml files
-    for fname in flist:
+    for fname in sorted(flist):
         with open(os.path.join(testroot, fname), "r") as file_handle:
             files[fname] = yaml.load(file_handle, Loader=yaml.CSafeLoader)
 


-----------------------------------------------------------------------

Summary of changes:
 cgi-bin/monkey-index.cgi |    2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/cgi-bin/monkey-index.cgi b/cgi-bin/monkey-index.cgi
index 3d3b380..4ae41f6 100755
--- a/cgi-bin/monkey-index.cgi
+++ b/cgi-bin/monkey-index.cgi
@@ -47,7 +47,7 @@ def main():
     flist.extend(os.path.join(division, f) for f in os.listdir(testroot + '/' 
+ division) if f.endswith('.yaml'))
 
     # load all test plan yaml files
-    for fname in flist:
+    for fname in sorted(flist):
         with open(os.path.join(testroot, fname), "r") as file_handle:
             files[fname] = yaml.load(file_handle, Loader=yaml.CSafeLoader)
 


-- 
NetSurf test cases

_______________________________________________
netsurf-commits mailing list
[email protected]
http://listmaster.pepperfish.net/cgi-bin/mailman/listinfo/netsurf-commits-netsurf-browser.org

Reply via email to