[Libreoffice-commits] core.git: qadevOOo/tests

Stephan Bergmann sbergman at redhat.com
Tue May 14 00:18:51 PDT 2013


 qadevOOo/tests/java/ifc/accessibility/_XAccessibleComponent.java |    7 ++++++-
 1 file changed, 6 insertions(+), 1 deletion(-)

New commits:
commit 893404cf5e7774ffd9bd6f276586629f9d9d3ae2
Author: Stephan Bergmann <sbergman at redhat.com>
Date:   Tue May 14 09:18:28 2013 +0200

    Improve test log output
    
    Change-Id: I11afb19726ecf6b585d84517cf2a8244800db81a

diff --git a/qadevOOo/tests/java/ifc/accessibility/_XAccessibleComponent.java b/qadevOOo/tests/java/ifc/accessibility/_XAccessibleComponent.java
index 1840a85..fd8833b 100644
--- a/qadevOOo/tests/java/ifc/accessibility/_XAccessibleComponent.java
+++ b/qadevOOo/tests/java/ifc/accessibility/_XAccessibleComponent.java
@@ -482,6 +482,11 @@ public class _XAccessibleComponent extends MultiMethodTest {
 
         result &= (size.Width == bounds.Width);
         result &= (size.Height == bounds.Height);
+        if (!result) {
+            log.println(
+                "bounds " + bounds.Width + "x" + bounds.Height + " vs. size "
+                + size.Width + "x" + size.Height);
+        }
 
         tRes.tested("getSize()", result);
     }
@@ -628,4 +633,4 @@ public class _XAccessibleComponent extends MultiMethodTest {
         }
         return Covered;
     }
-}
\ No newline at end of file
+}


More information about the Libreoffice-commits mailing list