[Libreoffice-commits] .: 2 commits - g sc/qa

Stephan Bergmann sbergmann at kemper.freedesktop.org
Tue Nov 29 07:57:32 PST 2011


 g                            |    7 +++++++
 sc/qa/unoapi/knownissues.xcl |    5 -----
 2 files changed, 7 insertions(+), 5 deletions(-)

New commits:
commit 8f32b3611e3deee1c093aa780da7fbefca0aafb5
Author: Stephan Bergmann <sbergman at redhat.com>
Date:   Tue Nov 29 16:56:43 2011 +0100

    fdo#43304 is fixed, tests can be re-enabled.

diff --git a/sc/qa/unoapi/knownissues.xcl b/sc/qa/unoapi/knownissues.xcl
index aee1654..17b39fe 100644
--- a/sc/qa/unoapi/knownissues.xcl
+++ b/sc/qa/unoapi/knownissues.xcl
@@ -198,11 +198,6 @@ sc.ScDataPilotTableObj::com::sun::star::sheet::XDataPilotTable
 ### i111032 ###
 sc.ScAccessibleCell::com::sun::star::accessibility::XAccessibleText
 
-### fdo43304 ###
-sc.ScDataPilotFieldsObj::com::sun::star::container::XNameAccess
-sc.ScDataPilotFieldsObj::com::sun::star::container::XIndexAccess
-sc.ScDataPilotFieldsObj::com::sun::star::container::XElementAccess
-
 ### fdo43308 ###
 sc.ScAccessiblePreviewCell::com::sun::star::accessibility::XAccessibleComponent
 sc.ScAutoFormatFieldObj::com::sun::star::sheet::TableAutoFormatField
commit 79e65eefd954f4217c5cd45a75076d76d56717e5
Author: Stephan Bergmann <sbergman at redhat.com>
Date:   Tue Nov 29 16:38:46 2011 +0100

    Added ./g -v switch to show git commands.

diff --git a/g b/g
index a4f9af5..a47f3df 100755
--- a/g
+++ b/g
@@ -12,6 +12,7 @@ if [ "$#" -eq "0" ] ; then
     echo "Usage: g [options] [git commands]"
     echo "   -f         Force - act on all the repos, not only the changed ones"
     echo "   -s         Silent - do not report the repo names."
+    echo "   -v         Verbose - Print git commands."
     echo "   -1         report the repos name on the first line of the output as <repo>:"
     echo "   -z         just to some house cleaning (hooks mostly). this is a stand-alone option as in ./g -z"
     echo "   --set-push-user     [username] re-write an existing tree's config with an fd.o commit account name"
@@ -119,6 +120,7 @@ SET_LAST_WORKING=
 ALLOW_EMPTY=
 KEEP_GOING=0
 REPORT_REPOS=1
+REPORT_COMMANDS=0
 REPORT_COMPACT=0
 DO_HOOK_REFRESH=false
 
@@ -128,6 +130,8 @@ while [ "${COMMAND:0:1}" = "-" ] ; do
             ;;
         -s) REPORT_REPOS=0
             ;;
+        -v) REPORT_COMMANDS=1
+            ;;
         -1) REPORT_COMPACT=1
             ;;
         --set-push-user)
@@ -336,6 +340,9 @@ for REPO in $DIRS ; do
                         echo "===== $NAME ====="
                     fi
                 fi
+                if [ "$REPORT_COMMANDS" = "1" ] ; then
+                    echo "+ git $PAGER $COMMAND $EXTRA ${FILES[@]}"
+                fi
                 git $PAGER "$COMMAND" $EXTRA "${FILES[@]}"
                 RETURN=$?
             fi


More information about the Libreoffice-commits mailing list