Gitweb links:

...log 
http://git.netsurf-browser.org/netsurf.git/shortlog/c1e1df42e2821e3713d808c4d2a171d94326d175
...commit 
http://git.netsurf-browser.org/netsurf.git/commit/c1e1df42e2821e3713d808c4d2a171d94326d175
...tree 
http://git.netsurf-browser.org/netsurf.git/tree/c1e1df42e2821e3713d808c4d2a171d94326d175

The branch, master has been updated
       via  c1e1df42e2821e3713d808c4d2a171d94326d175 (commit)
       via  9a90babfa14554d07c43a6d578f1634adb3ae067 (commit)
      from  d676c7e5b6166d49497aae851eea84037f94b412 (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.git/commit/?id=c1e1df42e2821e3713d808c4d2a171d94326d175
commit c1e1df42e2821e3713d808c4d2a171d94326d175
Author: Michael Drake <[email protected]>
Commit: Michael Drake <[email protected]>

    Test: Fix simultanious-fetches.yaml to not look like a YAML alias.

diff --git a/test/monkey-tests/simultanious-fetches.yaml 
b/test/monkey-tests/simultanious-fetches.yaml
index 513b788..57ec6e1 100644
--- a/test/monkey-tests/simultanious-fetches.yaml
+++ b/test/monkey-tests/simultanious-fetches.yaml
@@ -25,7 +25,7 @@ steps:
   url: http://www.arstechnica.co.uk/
 - action: block
   conditions:
-  - window: *all*
+  - window: "*all*"
     status: complete
 - action: window-close
   window: win1


commitdiff 
http://git.netsurf-browser.org/netsurf.git/commit/?id=9a90babfa14554d07c43a6d578f1634adb3ae067
commit 9a90babfa14554d07c43a6d578f1634adb3ae067
Author: Michael Drake <[email protected]>
Commit: Michael Drake <[email protected]>

    Test: Monkey driver: Fix blocking for *all* windows.

diff --git a/test/monkey-driver.py b/test/monkey-driver.py
index 226c028..57c6c54 100755
--- a/test/monkey-driver.py
+++ b/test/monkey-driver.py
@@ -60,7 +60,7 @@ def conds_met(ctx, conds):
         assert(status == "complete") # TODO: Add more status support?
         if window == "*all*":
             for win in ctx['windows'].items():
-                if win.throbbing:
+                if win[1].throbbing:
                     return False
         else:
             win = ctx['windows'][window]


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

Summary of changes:
 test/monkey-driver.py                       |    2 +-
 test/monkey-tests/simultanious-fetches.yaml |    2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/test/monkey-driver.py b/test/monkey-driver.py
index 226c028..57c6c54 100755
--- a/test/monkey-driver.py
+++ b/test/monkey-driver.py
@@ -60,7 +60,7 @@ def conds_met(ctx, conds):
         assert(status == "complete") # TODO: Add more status support?
         if window == "*all*":
             for win in ctx['windows'].items():
-                if win.throbbing:
+                if win[1].throbbing:
                     return False
         else:
             win = ctx['windows'][window]
diff --git a/test/monkey-tests/simultanious-fetches.yaml 
b/test/monkey-tests/simultanious-fetches.yaml
index 513b788..57ec6e1 100644
--- a/test/monkey-tests/simultanious-fetches.yaml
+++ b/test/monkey-tests/simultanious-fetches.yaml
@@ -25,7 +25,7 @@ steps:
   url: http://www.arstechnica.co.uk/
 - action: block
   conditions:
-  - window: *all*
+  - window: "*all*"
     status: complete
 - action: window-close
   window: win1


-- 
NetSurf Browser

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

Reply via email to