buildbot failure in ASF Buildbot on aoo-win7

2015-09-02 Thread buildbot
The Buildbot has detected a failed build on builder aoo-win7 while building ASF 
Buildbot. Full details are available at:
http://ci.apache.org/builders/aoo-win7/builds/70

Buildbot URL: http://ci.apache.org/

Buildslave for this Build: bb-win7

Build Reason: The Nightly scheduler named 'aoo-win7-nightly' triggered this 
build
Build Source Stamp: [branch openoffice/trunk] HEAD
Blamelist: 

BUILD FAILED: failed svn info build.pl --all

Sincerely,
 -The Buildbot





buildbot success in ASF Buildbot on openoffice-linux64-nightly

2015-09-02 Thread buildbot
The Buildbot has detected a passing build on builder openoffice-linux64-nightly 
while building ASF Buildbot. Full details are available at:
http://ci.apache.org/builders/openoffice-linux64-nightly/builds/67

Buildbot URL: http://ci.apache.org/

Buildslave for this Build: tethys_ubuntu

Build Reason: The Nightly scheduler named 'openoffice-linux64-nightly' 
triggered this build
Build Source Stamp: [branch openoffice/trunk] HEAD
Blamelist: 

Build succeeded!

Sincerely,
 -The Buildbot





svn commit: r1700846 - /openoffice/trunk/main/solenv/bin/langwrap

2015-09-02 Thread pfg
Author: pfg
Date: Wed Sep  2 15:55:41 2015
New Revision: 1700846

URL: http://svn.apache.org/r1700846
Log:
One more perl shebang.

Modified:
openoffice/trunk/main/solenv/bin/langwrap

Modified: openoffice/trunk/main/solenv/bin/langwrap
URL: 
http://svn.apache.org/viewvc/openoffice/trunk/main/solenv/bin/langwrap?rev=1700846=1700845=1700846=diff
==
--- openoffice/trunk/main/solenv/bin/langwrap (original)
+++ openoffice/trunk/main/solenv/bin/langwrap Wed Sep  2 15:55:41 2015
@@ -1,4 +1,4 @@
-#!/usr/bin/perl -w
+#!/usr/bin/env perl -w
 # *
 #  
 #  Licensed to the Apache Software Foundation (ASF) under one




svn commit: r1700850 - /openoffice/trunk/main/solenv/bin/pchdelta

2015-09-02 Thread pfg
Author: pfg
Date: Wed Sep  2 16:35:19 2015
New Revision: 1700850

URL: http://svn.apache.org/r1700850
Log:
If you said /bin/sh use sh not bash.

Still the path for python doesn't look right.

Modified:
openoffice/trunk/main/solenv/bin/pchdelta

Modified: openoffice/trunk/main/solenv/bin/pchdelta
URL: 
http://svn.apache.org/viewvc/openoffice/trunk/main/solenv/bin/pchdelta?rev=1700850=1700849=1700850=diff
==
--- openoffice/trunk/main/solenv/bin/pchdelta (original)
+++ openoffice/trunk/main/solenv/bin/pchdelta Wed Sep  2 16:35:19 2015
@@ -21,4 +21,4 @@
 # *
 
 # Wrapper around the pchdelta.py script
-bash -c "unset PYTHONHOME PYTHONPATH; /usr/bin/python 
../solenv/bin/pchdelta.py $*"
+sh -c "unset PYTHONHOME PYTHONPATH; /usr/bin/python ../solenv/bin/pchdelta.py 
$*"




svn commit: r1700845 - in /openoffice/trunk/main: ./ helpcontent2/helpers/ l10ntools/scripts/ oox/source/export/ sal/qa/ sal/qa/helper/gcov/ sal/textenc/generate/ sc/addin/util/ sd/res/webview/ solenv

2015-09-02 Thread pfg
Author: pfg
Date: Wed Sep  2 15:43:13 2015
New Revision: 1700845

URL: http://svn.apache.org/r1700845
Log:
Fix some perl shebangs.

Mosrt important perl scripts already use a portable method
but fix these nevertheless.

Modified:
openoffice/trunk/main/helpcontent2/helpers/checkuno.pl
openoffice/trunk/main/helpcontent2/helpers/createmakefile.pl
openoffice/trunk/main/l10ntools/scripts/keyidGen.pl
openoffice/trunk/main/oowintool
openoffice/trunk/main/oox/source/export/preset-definitions-to-shape-types.pl
openoffice/trunk/main/sal/qa/buildall.pl
openoffice/trunk/main/sal/qa/helper/gcov/gcov_filter.pl
openoffice/trunk/main/sal/qa/helper/gcov/gcov_result.pl
openoffice/trunk/main/sal/qa/helper/gcov/gcov_resultcompare.pl
openoffice/trunk/main/sal/qa/helper/gcov/gcov_resultinterpreter.pl
openoffice/trunk/main/sal/textenc/generate/big5hkscs2001.pl
openoffice/trunk/main/sal/textenc/generate/cns116431992.pl
openoffice/trunk/main/sal/textenc/generate/gb180302000.pl
openoffice/trunk/main/sc/addin/util/cl2c.pl
openoffice/trunk/main/sd/res/webview/editpic.pl
openoffice/trunk/main/sd/res/webview/poll.pl
openoffice/trunk/main/sd/res/webview/savepic.pl
openoffice/trunk/main/sd/res/webview/show.pl
openoffice/trunk/main/sd/res/webview/webview.pl
openoffice/trunk/main/solenv/bin/build_release.pl
openoffice/trunk/main/solenv/bin/cleanzip.pl
openoffice/trunk/main/solenv/bin/cws.pl
openoffice/trunk/main/solenv/bin/download_external_dependencies.pl
openoffice/trunk/main/solenv/bin/download_missing_extensions.pl
openoffice/trunk/main/solenv/bin/image-sort.pl
openoffice/trunk/main/solenv/bin/makemani.pl
openoffice/trunk/main/solenv/bin/modules/osarch.pm
openoffice/trunk/main/solenv/bin/patch_make_releases_xml.pl
openoffice/trunk/main/solenv/bin/patch_tool.pl
openoffice/trunk/main/solenv/bin/release_prepare.pl
openoffice/trunk/main/solenv/bin/replace_in_zip.pl
openoffice/trunk/main/solenv/bin/transform_description.pl
openoffice/trunk/main/sysui/desktop/share/create_mime_xml.pl
openoffice/trunk/main/xmerge/source/palmtests/bin/verify_sane.pl
openoffice/trunk/main/xmerge/source/palmtests/qa/bin/test_driver.pl

Modified: openoffice/trunk/main/helpcontent2/helpers/checkuno.pl
URL: 
http://svn.apache.org/viewvc/openoffice/trunk/main/helpcontent2/helpers/checkuno.pl?rev=1700845=1700844=1700845=diff
==
--- openoffice/trunk/main/helpcontent2/helpers/checkuno.pl (original)
+++ openoffice/trunk/main/helpcontent2/helpers/checkuno.pl Wed Sep  2 15:43:13 
2015
@@ -1,4 +1,4 @@
-#!/usr/bin/perl
+#!/usr/bin/env perl
 # *
 #  
 #  Licensed to the Apache Software Foundation (ASF) under one

Modified: openoffice/trunk/main/helpcontent2/helpers/createmakefile.pl
URL: 
http://svn.apache.org/viewvc/openoffice/trunk/main/helpcontent2/helpers/createmakefile.pl?rev=1700845=1700844=1700845=diff
==
--- openoffice/trunk/main/helpcontent2/helpers/createmakefile.pl (original)
+++ openoffice/trunk/main/helpcontent2/helpers/createmakefile.pl Wed Sep  2 
15:43:13 2015
@@ -1,4 +1,4 @@
-#!/usr/bin/perl
+#!/usr/bin/env perl
 # *
 #  
 #  Licensed to the Apache Software Foundation (ASF) under one

Modified: openoffice/trunk/main/l10ntools/scripts/keyidGen.pl
URL: 
http://svn.apache.org/viewvc/openoffice/trunk/main/l10ntools/scripts/keyidGen.pl?rev=1700845=1700844=1700845=diff
==
--- openoffice/trunk/main/l10ntools/scripts/keyidGen.pl (original)
+++ openoffice/trunk/main/l10ntools/scripts/keyidGen.pl Wed Sep  2 15:43:13 2015
@@ -1,4 +1,4 @@
-:
+:
 eval 'exec perl -S $0 ${1+"$@"}'
 if 0;
 #**

Modified: openoffice/trunk/main/oowintool
URL: 
http://svn.apache.org/viewvc/openoffice/trunk/main/oowintool?rev=1700845=1700844=1700845=diff
==
--- openoffice/trunk/main/oowintool (original)
+++ openoffice/trunk/main/oowintool Wed Sep  2 15:43:13 2015
@@ -1,4 +1,4 @@
-#!/usr/bin/perl -w
+#!/usr/bin/env perl -w
 # *
 #  
 #  Licensed to the Apache Software Foundation (ASF) under one

Modified: 
openoffice/trunk/main/oox/source/export/preset-definitions-to-shape-types.pl
URL: 
http://svn.apache.org/viewvc/openoffice/trunk/main/oox/source/export/preset-definitions-to-shape-types.pl?rev=1700845=1700844=1700845=diff
==
--- 
openoffice/trunk/main/oox/source/export/preset-definitions-to-shape-types.pl 
(original)
+++ 

buildbot failure in ASF Buildbot on aoo-win7

2015-09-02 Thread buildbot
The Buildbot has detected a failed build on builder aoo-win7 while building ASF 
Buildbot. Full details are available at:
http://ci.apache.org/builders/aoo-win7/builds/71

Buildbot URL: http://ci.apache.org/

Buildslave for this Build: bb-win7

Build Reason: The Nightly scheduler named 'aoo-win7-nightly' triggered this 
build
Build Source Stamp: [branch openoffice/trunk] HEAD
Blamelist: 

BUILD FAILED: failed svn info configure bootstrap build.pl --all copy log index

Sincerely,
 -The Buildbot





buildbot failure in ASF Buildbot on openoffice-fbsd-nightly

2015-09-02 Thread buildbot
The Buildbot has detected a failed build on builder openoffice-fbsd-nightly 
while building ASF Buildbot. Full details are available at:
http://ci.apache.org/builders/openoffice-fbsd-nightly/builds/57

Buildbot URL: http://ci.apache.org/

Buildslave for this Build: bb-fbsd2_64bit

Build Reason: The Nightly scheduler named 'openoffice-fbsd-nightly' triggered 
this build
Build Source Stamp: [branch openoffice/trunk] HEAD
Blamelist: 

BUILD FAILED: failed build --all

Sincerely,
 -The Buildbot





buildbot success in ASF Buildbot on openoffice-linux32-nightly

2015-09-02 Thread buildbot
The Buildbot has detected a passing build on builder openoffice-linux32-nightly 
while building ASF Buildbot. Full details are available at:
http://ci.apache.org/builders/openoffice-linux32-nightly/builds/73

Buildbot URL: http://ci.apache.org/

Buildslave for this Build: bb-vm2_ubuntu_32bit

Build Reason: The Nightly scheduler named 'openoffice-linux32-nightly' 
triggered this build
Build Source Stamp: [branch openoffice/trunk] HEAD
Blamelist: 

Build succeeded!

Sincerely,
 -The Buildbot





svn commit: r1700929 [2/2] - in /openoffice/trunk/main/sal/qa/OStringBuffer: makefile.mk rtl_OStringBuffer.cxx

2015-09-02 Thread damjan
Modified: openoffice/trunk/main/sal/qa/OStringBuffer/rtl_OStringBuffer.cxx
URL: 
http://svn.apache.org/viewvc/openoffice/trunk/main/sal/qa/OStringBuffer/rtl_OStringBuffer.cxx?rev=1700929=1700928=1700929=diff
==
--- openoffice/trunk/main/sal/qa/OStringBuffer/rtl_OStringBuffer.cxx (original)
+++ openoffice/trunk/main/sal/qa/OStringBuffer/rtl_OStringBuffer.cxx Thu Sep  3 
04:26:09 2015
@@ -31,10 +31,7 @@
 
 #include 
 
-#include "cppunit/TestAssert.h"
-#include "cppunit/TestFixture.h"
-#include "cppunit/extensions/HelperMacros.h"
-#include "cppunit/plugin/TestPlugIn.h"
+#include "gtest/gtest.h"
 
 #include 
 
@@ -57,143 +54,107 @@ using namespace rtl;
 
 namespace rtl_OStringBuffer
 {
-class  ctors : public CppUnit::TestFixture
+class  ctors : public ::testing::Test
 {
 public:
+};
 
-void ctor_001()
-{
-::rtl::OStringBuffer aStrBuf;
-const sal_Char* pStr = aStrBuf.getStr();
+TEST_F(ctors, ctor_001)
+{
+::rtl::OStringBuffer aStrBuf;
+const sal_Char* pStr = aStrBuf.getStr();
 
-CPPUNIT_ASSERT_MESSAGE
-(
-"New OStringBuffer containing no characters",
-aStrBuf.getLength() == 0 &&
-*pStr == '\0' && aStrBuf.getCapacity() == 16
-);
-}
+ASSERT_TRUE(aStrBuf.getLength() == 0 &&
+*pStr == '\0' && aStrBuf.getCapacity() == 16) << "New 
OStringBuffer containing no characters";
+}
 
-void ctor_002()
-{
-::rtl::OString   aStrtmp( kTestStr1 );
-::rtl::OStringBuffer aStrBuftmp( aStrtmp );
-::rtl::OStringBuffer aStrBuf( aStrBuftmp );
-// sal_Bool res = cmpstr(aStrBuftmp.getStr(),aStrBuf.getStr());
-
-sal_Int32 nLenStrBuftmp = aStrBuftmp.getLength();
-
-rtl::OString sStr(aStrBuftmp.getStr());
-sal_Bool res = aStrtmp.equals( sStr );
-
-CPPUNIT_ASSERT_MESSAGE
-(
-"New OStringBuffer from another OStringBuffer",
-aStrBuf.getLength() == nLenStrBuftmp &&
-aStrBuf.getCapacity() == aStrBuftmp.getCapacity() &&
-res
-);
+TEST_F(ctors, ctor_002)
+{
+::rtl::OString   aStrtmp( kTestStr1 );
+::rtl::OStringBuffer aStrBuftmp( aStrtmp );
+::rtl::OStringBuffer aStrBuf( aStrBuftmp );
+// sal_Bool res = cmpstr(aStrBuftmp.getStr(),aStrBuf.getStr());
+
+sal_Int32 nLenStrBuftmp = aStrBuftmp.getLength();
+
+rtl::OString sStr(aStrBuftmp.getStr());
+sal_Bool res = aStrtmp.equals( sStr );
+
+ASSERT_TRUE(aStrBuf.getLength() == nLenStrBuftmp &&
+aStrBuf.getCapacity() == aStrBuftmp.getCapacity() &&
+res) << "New OStringBuffer from another OStringBuffer";
 
-}
+}
 
-void ctor_003()
-{
-::rtl::OStringBuffer aStrBuf1(kTestStr2Len);
+TEST_F(ctors, ctor_003)
+{
+::rtl::OStringBuffer aStrBuf1(kTestStr2Len);
 #ifdef WITH_CORE
-::rtl::OStringBuffer aStrBuf2(kSInt32Max); //will core dump
-// LLA: will core, due to the fact, that ksint32max is too big, 
the max length can't
-//  use, because there are some internal bytes, which we can't 
calculate.
+::rtl::OStringBuffer aStrBuf2(kSInt32Max); //will core dump
+// LLA: will core, due to the fact, that ksint32max is too big, the 
max length can't
+//  use, because there are some internal bytes, which we can't 
calculate.
 
 #else
-::rtl::OStringBuffer aStrBuf2(0);
+::rtl::OStringBuffer aStrBuf2(0);
 #endif
 
-const sal_Char* pStr1 = aStrBuf1.getStr();
-const sal_Char* pStr2 = aStrBuf2.getStr();
+const sal_Char* pStr1 = aStrBuf1.getStr();
+const sal_Char* pStr2 = aStrBuf2.getStr();
 
 #ifdef WITH_CORE
-CPPUNIT_ASSERT_MESSAGE
-(
-"New OStringBuffer containing no characters and contain 
assigned capacity",
-aStrBuf1.getLength() == 0 &&
-! *(aStrBuf1.getStr()) && aStrBuf1.getCapacity() == 
kTestStr2Len &&
-aStrBuf2.getLength() == 0 &&
-! *(aStrBuf2.getStr()) && aStrBuf2.getCapacity() == kSInt32Max
-
-);
+ASSERT_TRUE(aStrBuf1.getLength() == 0 &&
+! *(aStrBuf1.getStr()) && aStrBuf1.getCapacity() == kTestStr2Len &&
+aStrBuf2.getLength() == 0 &&
+! *(aStrBuf2.getStr()) && aStrBuf2.getCapacity() == kSInt32Max) << 
"New OStringBuffer containing no characters and contain assigned capacity";
 #else
-CPPUNIT_ASSERT_MESSAGE
-(
-"New OStringBuffer containing no characters and contain 
assigned capacity",
-aStrBuf1.getLength() == 0 &&
-*pStr1 == '\0' 

svn commit: r1700929 [1/2] - in /openoffice/trunk/main/sal/qa/OStringBuffer: makefile.mk rtl_OStringBuffer.cxx

2015-09-02 Thread damjan
Author: damjan
Date: Thu Sep  3 04:26:09 2015
New Revision: 1700929

URL: http://svn.apache.org/r1700929
Log:
#i125003# migrate main/sal/qa/OStringBuffer from cppunit to Google Test.


Modified:
openoffice/trunk/main/sal/qa/OStringBuffer/makefile.mk
openoffice/trunk/main/sal/qa/OStringBuffer/rtl_OStringBuffer.cxx

Modified: openoffice/trunk/main/sal/qa/OStringBuffer/makefile.mk
URL: 
http://svn.apache.org/viewvc/openoffice/trunk/main/sal/qa/OStringBuffer/makefile.mk?rev=1700929=1700928=1700929=diff
==
--- openoffice/trunk/main/sal/qa/OStringBuffer/makefile.mk (original)
+++ openoffice/trunk/main/sal/qa/OStringBuffer/makefile.mk Thu Sep  3 04:26:09 
2015
@@ -36,39 +36,30 @@ ENABLE_EXCEPTIONS=TRUE
 
 .INCLUDE :  settings.mk
 
-CFLAGS+= $(LFS_CFLAGS)
-CXXFLAGS+= $(LFS_CFLAGS)
+.IF "$(ENABLE_UNIT_TESTS)" != "YES"
+all:
+   @echo unit tests are disabled. Nothing to do.
 
-CFLAGSCXX += $(CPPUNIT_CFLAGS)
+.ELSE
 
-#--- All object files 
---
-# do this here, so we get right dependencies
-# SLOFILES= \
-#$(SLO)$/OStringBuffer.obj
+CFLAGS+= $(LFS_CFLAGS)
+CXXFLAGS+= $(LFS_CFLAGS)
 
 #--- OStringBuffer 
---
 
-SHL1OBJS= \
+APP1OBJS= \
$(SLO)$/rtl_OStringBuffer.obj \
$(SLO)$/rtl_String_Utils.obj
 
-SHL1TARGET= rtl_OStringBuffer
-SHL1STDLIBS= $(SALLIB) $(CPPUNITLIB)
-
-SHL1IMPLIB= i$(SHL1TARGET)
-# SHL1DEF=$(MISC)$/$(SHL1TARGET).def
-
-DEF1NAME=$(SHL1TARGET)
-SHL1VERSIONMAP = $(PRJ)$/qa$/export.map
-SHL1RPATH = NONE
-
-#--- All object files 
---
-# do this here, so we get right dependencies
-SLOFILES=$(SHL1OBJS)
+APP1TARGET= rtl_OStringBuffer
+APP1STDLIBS= $(SALLIB) $(GTESTLIB)
+APP1RPATH = NONE
+APP1TEST = enabled
 
 # --- Targets --
 
 .INCLUDE :  target.mk
-.INCLUDE : _cppunit.mk
+
+.ENDIF # "$(ENABLE_UNIT_TESTS)" != "YES"
 
 .END




svn commit: r1700874 - /openoffice/trunk/main/solenv/gbuild/platform/freebsd.mk

2015-09-02 Thread damjan
Author: damjan
Date: Wed Sep  2 19:13:15 2015
New Revision: 1700874

URL: http://svn.apache.org/r1700874
Log:
Don't pass -finline-limit=0 and -fno-default-inline command line options to 
Clang
during debug builds, since it doesn't want to run with them.


Modified:
openoffice/trunk/main/solenv/gbuild/platform/freebsd.mk

Modified: openoffice/trunk/main/solenv/gbuild/platform/freebsd.mk
URL: 
http://svn.apache.org/viewvc/openoffice/trunk/main/solenv/gbuild/platform/freebsd.mk?rev=1700874=1700873=1700874=diff
==
--- openoffice/trunk/main/solenv/gbuild/platform/freebsd.mk (original)
+++ openoffice/trunk/main/solenv/gbuild/platform/freebsd.mk Wed Sep  2 19:13:15 
2015
@@ -229,9 +229,13 @@ endif
 gb_DEBUG_CFLAGS := -ggdb3 -finline-limit=0 -fno-inline -fno-default-inline
 
 ifeq ($(gb_DEBUGLEVEL),2)
+ifeq ($(COM),CLANG)
+gb_LinkTarget_CXXFLAGS += -ggdb3 -fno-inline
+gb_LinkTarget_CFLAGS += -ggdb3 -fno-inline
+else
 gb_LinkTarget_CXXFLAGS += -ggdb3 -finline-limit=0 -fno-inline 
-fno-default-inline
 gb_LinkTarget_CFLAGS += -ggdb3 -finline-limit=0 -fno-inline -fno-default-inline
-
+endif
 endif
 
 gb_LinkTarget_INCLUDE := $(filter-out %/stl, $(subst -I. , ,$(SOLARINC)))




buildbot failure in ASF Buildbot on openoffice-linux64-rat-aoo410

2015-09-02 Thread buildbot
The Buildbot has detected a failed build on builder 
openoffice-linux64-rat-aoo410 while building ASF Buildbot. Full details are 
available at:
http://ci.apache.org/builders/openoffice-linux64-rat-aoo410/builds/53

Buildbot URL: http://ci.apache.org/

Buildslave for this Build: tethys_ubuntu

Build Reason: The Nightly scheduler named 'openoffice-linux64-rat-aoo410' 
triggered this build
Build Source Stamp: [branch openoffice/branches/AOO410] HEAD
Blamelist: 

BUILD FAILED: failed

Sincerely,
 -The Buildbot





buildbot success in ASF Buildbot on openoffice-linux64-rat

2015-09-02 Thread buildbot
The Buildbot has detected a passing build on builder openoffice-linux64-rat 
while building ASF Buildbot. Full details are available at:
http://ci.apache.org/builders/openoffice-linux64-rat/builds/57

Buildbot URL: http://ci.apache.org/

Buildslave for this Build: tethys_ubuntu

Build Reason: The Nightly scheduler named 'openoffice-linux64-rat' triggered 
this build
Build Source Stamp: [branch openoffice/trunk] HEAD
Blamelist: 

Build succeeded!

Sincerely,
 -The Buildbot





buildbot failure in ASF Buildbot on openoffice-fbsd-nightly

2015-09-02 Thread buildbot
The Buildbot has detected a failed build on builder openoffice-fbsd-nightly 
while building ASF Buildbot. Full details are available at:
http://ci.apache.org/builders/openoffice-fbsd-nightly/builds/56

Buildbot URL: http://ci.apache.org/

Buildslave for this Build: bb-fbsd2_64bit

Build Reason: forced: by IRC user  on channel #asftest: test CPPFLAGS
Build Source Stamp: HEAD
Blamelist: 

BUILD FAILED: failed build --all

Sincerely,
 -The Buildbot