Gitweb links:
...log
http://git.netsurf-browser.org/netsurf-test.git/shortlog/fe670174a105e1a07fb38db1b2d318979b0a68e8
...commit
http://git.netsurf-browser.org/netsurf-test.git/commit/fe670174a105e1a07fb38db1b2d318979b0a68e8
...tree
http://git.netsurf-browser.org/netsurf-test.git/tree/fe670174a105e1a07fb38db1b2d318979b0a68e8
The branch, master has been updated
via fe670174a105e1a07fb38db1b2d318979b0a68e8 (commit)
from 9ef04bd727252aee9dc6e074303f5a2aefb893e3 (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=fe670174a105e1a07fb38db1b2d318979b0a68e8
commit fe670174a105e1a07fb38db1b2d318979b0a68e8
Author: Vincent Sanders <[email protected]>
Commit: Vincent Sanders <[email protected]>
fix division directory yaml paths
diff --git a/cgi-bin/monkey-index.cgi b/cgi-bin/monkey-index.cgi
index 9feecd9..7154dc2 100755
--- a/cgi-bin/monkey-index.cgi
+++ b/cgi-bin/monkey-index.cgi
@@ -44,7 +44,7 @@ def main():
return
flist = [f for f in os.listdir(testroot) if f.endswith('.yaml')]
- flist.extend(f for f in os.listdir(testroot + '/' + division) if
f.endswith('.yaml'))
+ 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:
-----------------------------------------------------------------------
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 9feecd9..7154dc2 100755
--- a/cgi-bin/monkey-index.cgi
+++ b/cgi-bin/monkey-index.cgi
@@ -44,7 +44,7 @@ def main():
return
flist = [f for f in os.listdir(testroot) if f.endswith('.yaml')]
- flist.extend(f for f in os.listdir(testroot + '/' + division) if
f.endswith('.yaml'))
+ 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:
--
NetSurf test cases
_______________________________________________
netsurf-commits mailing list
[email protected]
http://listmaster.pepperfish.net/cgi-bin/mailman/listinfo/netsurf-commits-netsurf-browser.org