[ooo-build-commit] 9 commits - patches/dev300 patches/vba
Jan Nieuwenhuizen
janneke at kemper.freedesktop.org
Thu Oct 22 11:06:18 PDT 2009
patches/dev300/apply | 26
patches/dev300/build-fix-xulrunner-npapi-inc.diff | 25
patches/dev300/configure-fix-lpsolve-depends.diff | 26
patches/dev300/configure-fix-use-c++-for-mythes.diff | 32
patches/dev300/xlsx-snapshot.diff | 98
patches/vba/cws-vbasupportdev300-m1.diff | 342 --
patches/vba/cws-vbasupportdev300.diff | 2124 ------------------
patches/vba/xlsx-separate-lib-vba-fallback-tweak.diff | 15
8 files changed, 135 insertions(+), 2553 deletions(-)
New commits:
commit f4c691ec6b6d691cbd3890e7eae0b8a0112cb391
Author: Jan Nieuwenhuizen <janneke at gnu.org>
Date: Thu Oct 22 20:02:23 2009 +0200
Add second guess for npapi include shield from newer xulrunner.
* Modified patches/dev300/apply
* Added patches/dev300/build-fix-xulrunner-npapi-inc.diff
diff --git a/patches/dev300/apply b/patches/dev300/apply
index 2401bf8..03dd1b6 100644
--- a/patches/dev300/apply
+++ b/patches/dev300/apply
@@ -3381,6 +3381,7 @@ sd-ppt-fix-document-summary-reading.diff, n#546758, rodo
unoxml-fix-empty-xmlns.diff, rodo
configure-fix-lpsolve-depends.diff, janneke
configure-fix-use-c++-for-mythes.diff, janneke
+build-fix-xulrunner-npapi-inc.diff, janneke
[ NovellOnlyWin32 ]
# Don't attempt to restart soffice.bin immediately if it crashes. At
diff --git a/patches/dev300/build-fix-xulrunner-npapi-inc.diff b/patches/dev300/build-fix-xulrunner-npapi-inc.diff
new file mode 100644
index 0000000..3d6f0c1
--- /dev/null
+++ b/patches/dev300/build-fix-xulrunner-npapi-inc.diff
@@ -0,0 +1,25 @@
+From 4576fc310a9cdb6b332733a508df7c31ca4fcc59 Mon Sep 17 00:00:00 2001
+From: Jan Nieuwenhuizen <janneke at gnu.org>
+Date: Fri, 9 Oct 2009 17:03:15 +0200
+Subject: [PATCH 2/3] xulrunner build fix: add second guess for npapi.h include shield. Ugh.
+
+---
+ .../source/plugin/inc/plugin/unx/plugcon.hxx | 2 +-
+ 1 files changed, 1 insertions(+), 1 deletions(-)
+
+diff --git extensions/source/plugin/inc/plugin/unx/plugcon.hxx extensions/source/plugin/inc/plugin/unx/plugcon.hxx
+index 6d3fad4..13b6d72 100644
+--- extensions/source/plugin/inc/plugin/unx/plugcon.hxx
++++ extensions/source/plugin/inc/plugin/unx/plugcon.hxx
+@@ -100,7 +100,7 @@ extern "C" {
+ # endif
+ #endif
+
+-#ifndef _NPAPI_H_
++#if ! defined ( _NPAPI_H_) && ! defined (npapi_h_)
+ extern "C" {
+ #include <npsdk/npupp.h>
+ }
+--
+1.6.3.3
+
commit 08f3712cacb1530a7753ecf1228b2bda4191e1fd
Author: Jan Nieuwenhuizen <janneke at gnu.org>
Date: Thu Oct 22 20:00:37 2009 +0200
configure fix: use c++ for mythes.hxx.
* Modified patches/dev300/apply
* Added patches/dev300/configure-fix-use-c++-for-mythes.diff
diff --git a/patches/dev300/apply b/patches/dev300/apply
index 80c0238..2401bf8 100644
--- a/patches/dev300/apply
+++ b/patches/dev300/apply
@@ -3380,6 +3380,7 @@ sd-ppt-fix-document-summary-reading.diff, n#546758, rodo
# fixes crasher in xml parser
unoxml-fix-empty-xmlns.diff, rodo
configure-fix-lpsolve-depends.diff, janneke
+configure-fix-use-c++-for-mythes.diff, janneke
[ NovellOnlyWin32 ]
# Don't attempt to restart soffice.bin immediately if it crashes. At
diff --git a/patches/dev300/configure-fix-use-c++-for-mythes.diff b/patches/dev300/configure-fix-use-c++-for-mythes.diff
new file mode 100644
index 0000000..e12feed
--- /dev/null
+++ b/patches/dev300/configure-fix-use-c++-for-mythes.diff
@@ -0,0 +1,32 @@
+From a16e948f52d10f386af3d3c74e4a94400be9f16e Mon Sep 17 00:00:00 2001
+From: Jan Nieuwenhuizen <janneke at gnu.org>
+Date: Thu, 8 Oct 2009 15:59:11 +0200
+Subject: [PATCH 1/3] Use c++ for mythes.hxx.
+
+---
+ configure.in | 2 ++
+ 1 files changed, 2 insertions(+), 0 deletions(-)
+
+diff --git configure.in configure.in
+index aff65d6..2c9cf6f 100644
+--- configure.in
++++ configure.in
+@@ -4965,6 +4965,7 @@ AC_SUBST(HYPHEN_LIB)
+ dnl ===================================================================
+ dnl Checking for mythes
+ dnl ===================================================================
++AC_LANG_PUSH([C++])
+ AC_MSG_CHECKING([which mythes to use])
+ if test -n "$with_system_mythes" && test "$with_system_mythes" != "no"; then
+ AC_MSG_RESULT([external])
+@@ -4978,6 +4979,7 @@ else
+ SYSTEM_MYTHES=NO
+ fi
+ AC_SUBST(SYSTEM_MYTHES)
++AC_LANG_POP([C++])
+
+ dnl ===================================================================
+ dnl Checking for lpsolve
+--
+1.6.3.3
+
commit b97dd7dd0c0259eca65757f674e7bd30a6c29a0d
Author: Jan Nieuwenhuizen <janneke at gnu.org>
Date: Thu Oct 22 19:59:22 2009 +0200
configure fix for lpsolve dependencies.
Needed for building "un"-patched version.
* Modified patches/dev300/apply
* Added patches/dev300/configure-fix-lpsolve-depends.diff
diff --git a/patches/dev300/apply b/patches/dev300/apply
index ce6c656..80c0238 100644
--- a/patches/dev300/apply
+++ b/patches/dev300/apply
@@ -3379,6 +3379,7 @@ store-crash-fix.diff, thorsten
sd-ppt-fix-document-summary-reading.diff, n#546758, rodo
# fixes crasher in xml parser
unoxml-fix-empty-xmlns.diff, rodo
+configure-fix-lpsolve-depends.diff, janneke
[ NovellOnlyWin32 ]
# Don't attempt to restart soffice.bin immediately if it crashes. At
diff --git a/patches/dev300/configure-fix-lpsolve-depends.diff b/patches/dev300/configure-fix-lpsolve-depends.diff
new file mode 100644
index 0000000..e271969
--- /dev/null
+++ b/patches/dev300/configure-fix-lpsolve-depends.diff
@@ -0,0 +1,26 @@
+From 417c6999e81a415cf1be7f6ba765322a98c8b4ac Mon Sep 17 00:00:00 2001
+From: Jan Nieuwenhuizen <janneke at gnu.org>
+Date: Wed, 21 Oct 2009 08:32:16 +0200
+Subject: [PATCH 3/3] configure.in: lpsolve may need libm, libdl, libcolamd.
+
+---
+ configure.in | 3 +++
+ 1 files changed, 3 insertions(+), 0 deletions(-)
+
+diff --git configure.in configure.in
+index 2c9cf6f..5aca145 100644
+--- configure.in
++++ configure.in
+@@ -4984,6 +4984,9 @@ AC_LANG_POP([C++])
+ dnl ===================================================================
+ dnl Checking for lpsolve
+ dnl ===================================================================
++AC_CHECK_LIB(m, floor)
++AC_CHECK_LIB(dl, dlopen)
++AC_CHECK_LIB(colamd, colamd)
+ AC_MSG_CHECKING([which lpsolve to use])
+ if test -n "$with_system_lpsolve" -o -n "$with_system_libs" && \
+ test "$with_system_lpsolve" != "no"; then
+--
+1.6.3.3
+
commit 25c5c43cf8ea2228e7afc9ba5ad128d2206c7d34
Author: Jan Nieuwenhuizen <janneke at gnu.org>
Date: Thu Oct 22 19:50:29 2009 +0200
Update xlsx-snapshot to ooo320.
* Modified patches/dev300/apply
* Modified patches/dev300/xlsx-snapshot.diff
diff --git a/patches/dev300/apply b/patches/dev300/apply
index ef3a051..ce6c656 100644
--- a/patches/dev300/apply
+++ b/patches/dev300/apply
@@ -3133,7 +3133,7 @@ pptx-gfx-layout-fix.diff, thorsten
# This is until 0453-Fix-formatted-text-change-tracking.patch, inluding, and
# should contain all the available changes.
-# xlsx-snapshot.diff
+xlsx-snapshot.diff
# Make the xlsx export and import work at the same time
# (converts the xlsx export to a UNO filter)
diff --git a/patches/dev300/xlsx-snapshot.diff b/patches/dev300/xlsx-snapshot.diff
index 4249a26..8e1699f 100644
--- a/patches/dev300/xlsx-snapshot.diff
+++ b/patches/dev300/xlsx-snapshot.diff
@@ -1,9 +1,3 @@
-# For the purpose of the 3.1 release, instead of sharing the binary and ooxml
-# export, we introduce a separate sc/source/filter/xlsx that creates libxlsx -
-# a filter for the XLSX files. After the release, the changes will be
-# reverted so that the binary and ooxml are shared again.
-# The changes include:
-# sc/source/filter/excel/* -> sc/source/filter/xlsx/xlsx-*
diff --git filter/source/config/fragments/filters/calc_MS_Excel_2007_XML.xcu filter/source/config/fragments/filters/calc_MS_Excel_2007_XML.xcu
index 3af06f5..07373eb 100644
--- filter/source/config/fragments/filters/calc_MS_Excel_2007_XML.xcu
@@ -56,8 +50,8 @@ index 07a9582..b7c4980 100644
};
diff --git sc/source/filter/excel/excdoc.cxx sc/source/filter/excel/excdoc.cxx
index 8c81942..ff03be7 100644
---- sc/source/filter/xlsx/xlsx-excdoc.cxx
-+++ sc/source/filter/xlsx/xlsx-excdoc.cxx
+--- sc/source/filter/excel/excdoc.cxx
++++ sc/source/filter/excel/excdoc.cxx
@@ -87,6 +87,8 @@
#include <math.h>
@@ -236,7 +230,7 @@ index 8c81942..ff03be7 100644
-
- rWorkbook->endElement( XML_workbook );
- rWorkbook.reset();
-- aStrm.commit();
+- aStrm.commitStorage();
}
-#if 0
+
@@ -248,13 +242,13 @@ index 8c81942..ff03be7 100644
+ rWorkbook->endElement( XML_workbook );
+ rWorkbook.reset();
+
-+ aStrm.commit();
++ aStrm.commitStorage();
}
diff --git sc/source/filter/excel/excrecds.cxx sc/source/filter/excel/excrecds.cxx
index 6d7dd44..6bf8e9e 100644
---- sc/source/filter/xlsx/xlsx-excrecds.cxx
-+++ sc/source/filter/xlsx/xlsx-excrecds.cxx
+--- sc/source/filter/excel/excrecds.cxx
++++ sc/source/filter/excel/excrecds.cxx
@@ -162,6 +162,10 @@ void ExcRecord::WriteBody( XclExpStream& rStrm )
SaveCont( rStrm );
}
@@ -268,8 +262,8 @@ index 6d7dd44..6bf8e9e 100644
diff --git sc/source/filter/excel/expop2.cxx sc/source/filter/excel/expop2.cxx
index 80423f1..bed1d2c 100644
---- sc/source/filter/xlsx/xlsx-expop2.cxx
-+++ sc/source/filter/xlsx/xlsx-expop2.cxx
+--- sc/source/filter/excel/expop2.cxx
++++ sc/source/filter/excel/expop2.cxx
@@ -204,20 +204,6 @@ FltError ExportXml2007::Write()
pExcDoc->ReadDoc(); // ScDoc -> ExcDoc
pExcDoc->WriteXml( aOut ); // wechstreamen
@@ -293,8 +287,8 @@ index 80423f1..bed1d2c 100644
if( rAddrConv.IsColTruncated() || rAddrConv.IsRowTruncated() || rAddrConv.IsTabTruncated() )
diff --git sc/source/filter/excel/ooxml-export-TODO.txt sc/source/filter/excel/ooxml-export-TODO.txt
index 5b04efb..a90feb4 100644
---- sc/source/filter/xlsx/ooxml-export-TODO.txt
-+++ sc/source/filter/xlsx/ooxml-export-TODO.txt
+--- sc/source/filter/excel/ooxml-export-TODO.txt
++++ sc/source/filter/excel/ooxml-export-TODO.txt
@@ -67,7 +67,6 @@ Elements:
- oleObjects (§3.3.1.58) [ ??? ]
- outlinePr (§3.3.1.59) [ ??? ]
@@ -398,8 +392,8 @@ index 5b04efb..a90feb4 100644
diff --git sc/source/filter/excel/xeescher.cxx sc/source/filter/excel/xeescher.cxx
index 46dadab..d3d10ff 100644
---- sc/source/filter/xlsx/xlsx-xeescher.cxx
-+++ sc/source/filter/xlsx/xlsx-xeescher.cxx
+--- sc/source/filter/excel/xeescher.cxx
++++ sc/source/filter/excel/xeescher.cxx
@@ -71,6 +71,7 @@
#include "svx/unoapi.hxx"
@@ -478,8 +472,8 @@ index 46dadab..d3d10ff 100644
diff --git sc/source/filter/excel/xename.cxx sc/source/filter/excel/xename.cxx
index b4de112..9bd6ac4 100644
---- sc/source/filter/xlsx/xlsx-xename.cxx
-+++ sc/source/filter/xlsx/xlsx-xename.cxx
+--- sc/source/filter/excel/xename.cxx
++++ sc/source/filter/excel/xename.cxx
@@ -565,7 +565,7 @@ sal_uInt16 XclExpNameManagerImpl::CreateName( const ScRangeData& rRangeData )
xName->SetTokenArray( xTokArr );
@@ -491,8 +485,8 @@ index b4de112..9bd6ac4 100644
/* Try to replace by existing built-in name - complete token array is
diff --git sc/source/filter/excel/xepivot.cxx sc/source/filter/excel/xepivot.cxx
index 0d43d06..0058266 100644
---- sc/source/filter/xlsx/xlsx-xepivot.cxx
-+++ sc/source/filter/xlsx/xlsx-xepivot.cxx
+--- sc/source/filter/excel/xepivot.cxx
++++ sc/source/filter/excel/xepivot.cxx
@@ -1322,6 +1322,147 @@ void XclExpPivotTable::Save( XclExpStream& rStrm )
}
}
@@ -643,8 +637,8 @@ index 0d43d06..0058266 100644
XclExpPTField* XclExpPivotTable::GetFieldAcc( const String& rName )
diff --git sc/source/filter/excel/xestream.cxx sc/source/filter/excel/xestream.cxx
index a279b9d..33cd93b 100644
---- sc/source/filter/xlsx/xlsx-xestream.cxx
-+++ sc/source/filter/xlsx/xlsx-xestream.cxx
+--- sc/source/filter/excel/xestream.cxx
++++ sc/source/filter/excel/xestream.cxx
@@ -45,11 +45,13 @@
#include "xlstring.hxx"
#include "xeroot.hxx"
@@ -667,7 +661,7 @@ index a279b9d..33cd93b 100644
using ::rtl::OString;
using ::rtl::OUString;
using ::utl::OStreamWrapper;
-@@ -659,6 +662,71 @@ void XclExpBiff8Encrypter::EncryptBytes( SvStream& rStrm, vector<sal_uInt8>& aBy
+@@ -659,7 +662,71 @@ void XclExpBiff8Encrypter::EncryptBytes( SvStream& rStrm, vector<sal_uInt8>& aBy
}
mnOldPos = nStrmPos;
}
@@ -735,7 +729,7 @@ index a279b9d..33cd93b 100644
+ break;
+ }
+}
-+
+
rtl::OUString XclXmlUtils::GetStreamName( const char* sStreamDir, const char* sStream, sal_Int32 nId )
{
rtl::OUStringBuffer sBuf;
@@ -949,8 +943,8 @@ index a279b9d..33cd93b 100644
const OUString& sRelativeStream,
diff --git sc/source/filter/excel/xestring.cxx sc/source/filter/excel/xestring.cxx
index afcd334..088a7ce 100644
---- sc/source/filter/xlsx/xlsx-xestring.cxx
-+++ sc/source/filter/xlsx/xlsx-xestring.cxx
+--- sc/source/filter/excel/xestring.cxx
++++ sc/source/filter/excel/xestring.cxx
@@ -33,6 +33,8 @@
#include <algorithm>
@@ -980,8 +974,8 @@ index afcd334..088a7ce 100644
void XclExpString::WriteXml( XclExpXmlStream& rStrm ) const
diff --git sc/source/filter/excel/xestyle.cxx sc/source/filter/excel/xestyle.cxx
index de32a64..2925283 100644
---- sc/source/filter/xlsx/xlsx-xestyle.cxx
-+++ sc/source/filter/xlsx/xlsx-xestyle.cxx
+--- sc/source/filter/excel/xestyle.cxx
++++ sc/source/filter/excel/xestyle.cxx
@@ -869,7 +869,7 @@ void XclExpFont::SaveXml( XclExpXmlStream& rStrm )
{
sax_fastparser::FSHelperPtr& rStyleSheet = rStrm.GetCurrentStream();
@@ -993,8 +987,8 @@ index de32a64..2925283 100644
}
diff --git sc/source/filter/excel/xetable.cxx sc/source/filter/excel/xetable.cxx
index 8d27d2d..3c2b1a5 100644
---- sc/source/filter/xlsx/xlsx-xetable.cxx
-+++ sc/source/filter/xlsx/xlsx-xetable.cxx
+--- sc/source/filter/excel/xetable.cxx
++++ sc/source/filter/excel/xetable.cxx
@@ -920,76 +920,12 @@ void XclExpFormulaCell::Save( XclExpStream& rStrm )
mxStringRec->Save( rStrm );
}
@@ -1075,8 +1069,8 @@ index 8d27d2d..3c2b1a5 100644
XML_r, XclXmlUtils::ToOString( GetXclPos() ).getStr(),
diff --git sc/source/filter/inc/XclExpChangeTrack.hxx sc/source/filter/inc/XclExpChangeTrack.hxx
index 053da60..59ec5db 100644
---- sc/source/filter/xlsx/XclExpChangeTrack.hxx
-+++ sc/source/filter/xlsx/XclExpChangeTrack.hxx
+--- sc/source/filter/inc/XclExpChangeTrack.hxx
++++ sc/source/filter/inc/XclExpChangeTrack.hxx
@@ -241,6 +241,8 @@ public:
virtual UINT16 GetNum() const;
@@ -1266,8 +1260,8 @@ index 053da60..59ec5db 100644
//___________________________________________________________________
diff --git sc/source/filter/inc/excrecds.hxx sc/source/filter/inc/excrecds.hxx
index bb6a26f..6ad0f71 100644
---- sc/source/filter/xlsx/excrecds.hxx
-+++ sc/source/filter/xlsx/excrecds.hxx
+--- sc/source/filter/inc/excrecds.hxx
++++ sc/source/filter/inc/excrecds.hxx
@@ -75,6 +75,7 @@ class ExcRecord : public XclExpRecord
{
public:
@@ -1278,8 +1272,8 @@ index bb6a26f..6ad0f71 100644
virtual sal_Size GetLen() const = 0;
diff --git sc/source/filter/inc/xcl97esc.hxx sc/source/filter/inc/xcl97esc.hxx
index 3703827..e112ff9 100644
---- sc/source/filter/xlsx/xcl97esc.hxx
-+++ sc/source/filter/xlsx/xcl97esc.hxx
+--- sc/source/filter/inc/xcl97esc.hxx
++++ sc/source/filter/inc/xcl97esc.hxx
@@ -36,6 +36,7 @@
#include <tools/stack.hxx>
#include "xlescher.hxx"
@@ -1290,8 +1284,8 @@ index 3703827..e112ff9 100644
#define EXC_EXP_OCX_CTRL 0
diff --git sc/source/filter/inc/xcl97rec.hxx sc/source/filter/inc/xcl97rec.hxx
index c0bd309..f2edee3 100644
---- sc/source/filter/xlsx/xcl97rec.hxx
-+++ sc/source/filter/xlsx/xcl97rec.hxx
+--- sc/source/filter/inc/xcl97rec.hxx
++++ sc/source/filter/inc/xcl97rec.hxx
@@ -35,7 +35,7 @@
#include "xcl97esc.hxx"
#include "xlstyle.hxx"
@@ -1394,8 +1388,8 @@ index c0bd309..f2edee3 100644
diff --git sc/source/filter/inc/xeescher.hxx sc/source/filter/inc/xeescher.hxx
index 8b3f9a6..3e5493a 100644
---- sc/source/filter/xlsx/xeescher.hxx
-+++ sc/source/filter/xlsx/xeescher.hxx
+--- sc/source/filter/inc/xeescher.hxx
++++ sc/source/filter/inc/xeescher.hxx
@@ -49,6 +49,7 @@ public:
/** Writes the BITMAP record. */
@@ -1414,8 +1408,8 @@ index 8b3f9a6..3e5493a 100644
bool mbVisible; /// true = permanently visible.
diff --git sc/source/filter/inc/xepivot.hxx sc/source/filter/inc/xepivot.hxx
index 2078003..a0f6dc9 100644
---- sc/source/filter/xlsx/xepivot.hxx
-+++ sc/source/filter/xlsx/xepivot.hxx
+--- sc/source/filter/inc/xepivot.hxx
++++ sc/source/filter/inc/xepivot.hxx
@@ -378,6 +378,7 @@ public:
/** Writes the entire pivot table. */
@@ -1426,8 +1420,8 @@ index 2078003..a0f6dc9 100644
private:
diff --git sc/source/filter/inc/xestream.hxx sc/source/filter/inc/xestream.hxx
index 3b49017..172f054 100644
---- sc/source/filter/xlsx/xestream.hxx
-+++ sc/source/filter/xlsx/xestream.hxx
+--- sc/source/filter/inc/xestream.hxx
++++ sc/source/filter/inc/xestream.hxx
@@ -270,11 +270,13 @@ private:
class ScAddress;
@@ -1480,8 +1474,8 @@ index 3b49017..172f054 100644
const ::rtl::OUString& sFullStream,
diff --git sc/source/filter/xcl97/XclExpChangeTrack.cxx sc/source/filter/xcl97/XclExpChangeTrack.cxx
index 79563aa..0e49a81 100644
---- sc/source/filter/xlsx/xlsx-XclExpChangeTrack.cxx
-+++ sc/source/filter/xlsx/xlsx-XclExpChangeTrack.cxx
+--- sc/source/filter/xcl97/XclExpChangeTrack.cxx
++++ sc/source/filter/xcl97/XclExpChangeTrack.cxx
@@ -34,12 +34,41 @@
//___________________________________________________________________
@@ -2115,8 +2109,8 @@ index 79563aa..0e49a81 100644
+
diff --git sc/source/filter/xcl97/xcl97esc.cxx sc/source/filter/xcl97/xcl97esc.cxx
index 97ef0bf..e4f2344 100644
---- sc/source/filter/xlsx/xlsx-xcl97esc.cxx
-+++ sc/source/filter/xlsx/xlsx-xcl97esc.cxx
+--- sc/source/filter/xcl97/xcl97esc.cxx
++++ sc/source/filter/xcl97/xcl97esc.cxx
@@ -201,7 +201,7 @@ EscherExHostAppData* XclEscherEx::StartShape( const com::sun::star::uno::Referen
pCurrAppData = new XclEscherHostAppData;
SdrObject* pObj = GetSdrObjectFromXShape( rShape );
@@ -2144,8 +2138,8 @@ index 97ef0bf..e4f2344 100644
{
diff --git sc/source/filter/xcl97/xcl97rec.cxx sc/source/filter/xcl97/xcl97rec.cxx
index 91da454..d22d954 100644
---- sc/source/filter/xlsx/xlsx-xcl97rec.cxx
-+++ sc/source/filter/xlsx/xlsx-xcl97rec.cxx
+--- sc/source/filter/xcl97/xcl97rec.cxx
++++ sc/source/filter/xcl97/xcl97rec.cxx
@@ -80,7 +80,12 @@
#include "patattr.hxx"
#include "tabprotection.hxx"
commit 9b7f41c7cb9bab4473f48bc06d2ea5297dcd657b
Author: Jan Nieuwenhuizen <janneke at gnu.org>
Date: Thu Oct 22 19:24:13 2009 +0200
disable build-java-target-extensions.diff. No such file.
* Modified patches/dev300/apply
diff --git a/patches/dev300/apply b/patches/dev300/apply
index d51a280..ef3a051 100644
--- a/patches/dev300/apply
+++ b/patches/dev300/apply
@@ -381,7 +381,8 @@ wiki-publisher-no-license.diff
[ ExtensionFixes ]
pdfimport-no-license.diff
-build-java-target-extensions.diff, i#93115, pmladek
+# no such file
+# build-java-target-extensions.diff, i#93115, pmladek
sdext-minimizer-docked.diff, thorsten
[ NovellOnlyExtensionFixes ]
commit bd4f71c7823ad8635651176be03be777067b4176
Author: Jan Nieuwenhuizen <janneke at gnu.org>
Date: Thu Oct 22 19:22:32 2009 +0200
xlsx-separate-lib-vba-fallback-tweak: remove. Already in ooo320.
* Modified patches/dev300/apply
* Deleted patches/vba/xlsx-separate-lib-vba-fallback-tweak.diff
diff --git a/patches/dev300/apply b/patches/dev300/apply
index 66aa89b..d51a280 100644
--- a/patches/dev300/apply
+++ b/patches/dev300/apply
@@ -3128,8 +3128,6 @@ pptx-gfx-layout-fix.diff, thorsten
# pptx-fix-connector-crash.diff, n#499129, thorsten
[ OOXMLExport ]
-xlsx-separate-lib-vba-fallback-tweak.diff
-
# Snapshot of the xlsx export filter at the time of creation of ooxml03
# This is until 0453-Fix-formatted-text-change-tracking.patch, inluding, and
# should contain all the available changes.
diff --git a/patches/vba/xlsx-separate-lib-vba-fallback-tweak.diff b/patches/vba/xlsx-separate-lib-vba-fallback-tweak.diff
deleted file mode 100644
index 3f3f7be..0000000
--- a/patches/vba/xlsx-separate-lib-vba-fallback-tweak.diff
+++ /dev/null
@@ -1,15 +0,0 @@
-diff --git sc/source/filter/xlsx/xlsx-excimp8.cxx sc/source/filter/xlsx/xlsx-excimp8.cxx
-index 2995571..d03666e 100644
---- sc/source/filter/excel/excimp8.cxx
-+++ sc/source/filter/exel/excimp8.cxx
-@@ -277,7 +277,9 @@ void ImportExcel8::ReadBasic( void )
- if( bLoadCode || bLoadStrg )
- {
- uno::Any aGlobs;
-- aGlobs <<= ::comphelper::getProcessServiceFactory()->createInstance( ::rtl::OUString::createFromAscii( "ooo.vba.excel.Globals") );
-+ uno::Sequence< uno::Any > aArgs(1);
-+ aArgs[ 0 ] <<= pShell->GetModel();
-+ aGlobs <<= ::comphelper::getProcessServiceFactory()->createInstanceWithArguments( ::rtl::OUString::createFromAscii( "ooo.vba.excel.Globals"), aArgs );
- pShell->GetBasicManager()->SetGlobalUNOConstant( "VBAGlobals", aGlobs );
- SvxImportMSVBasic aBasicImport( *pShell, *xRootStrg, bLoadCode, bLoadStrg );
- bool bAsComment = !bLoadExecutable || !aGlobs.hasValue();
commit 97891dbffe37b7ec39af4a39e7cfb1fb07a91374
Author: Jan Nieuwenhuizen <janneke at gnu.org>
Date: Thu Oct 22 19:19:58 2009 +0200
cws-vbasupportdev300-m1.diff: remove log file patching. Fixes make patch.
diff --git a/patches/vba/cws-vbasupportdev300-m1.diff b/patches/vba/cws-vbasupportdev300-m1.diff
index 575878e..4b6ecf7 100644
--- a/patches/vba/cws-vbasupportdev300-m1.diff
+++ b/patches/vba/cws-vbasupportdev300-m1.diff
@@ -35941,348 +35941,6 @@ ___________________________________________________________________
Added: svn:mime-type
+ application/octet-stream
-Index: sc/source/ui/vba/testvba/TestDocuments/logs/unix/VariantTest.log
-===================================================================
---- sc/source/ui/vba/testvba/TestDocuments/logs/unix/VariantTest.log (revision 0)
-+++ sc/source/ui/vba/testvba/TestDocuments/logs/unix/VariantTest.log (revision 276288)
-@@ -0,0 +1,47 @@
-+Test run started : 24/09/2008 10:58:18
-+----------------------------------------------------------------
-+TestAddress
-+ TEST START : TestAddress
-+ ITEM Assertion OK : test1: res = (aboo = '')
-+ ITEM Assertion OK : test 2: res = (aboo = 'fiddlesticks')
-+ ITEM Assertion OK : test 3: res = ('' = aboo)
-+ ITEM Assertion OK : test 4: res = ('fiddlesticks' = aboo )
-+ ITEM Assertion OK : test 5: res = (testString = '')
-+ ITEM Assertion OK : test 6: res = (testString = 'fiddlesticks')
-+ ITEM Assertion OK : test 7: res = ('' = testString)
-+ ITEM Assertion OK : test 8: res = ('fiddlesticks' = testString )
-+ ITEM Assertion OK : test 9: res = ( aboo < " )
-+ ITEM Assertion OK : test 10: res = ( testString < " )
-+ ITEM Assertion OK : test 11: res = ( aboo > " )
-+ ITEM Assertion OK : test 12: res = ( testString > " )
-+ ITEM Assertion OK : test 13: res = ( aboo <> '' )
-+ ITEM Assertion OK : test 14: res = ( testString <> '' )
-+ ITEM Assertion OK : test 15: res = (aboo = something/14)
-+ ITEM Assertion OK : test 16: res = something + 'string'
-+ ITEM Assertion OK : test 17: res = something & 'string'
-+ ITEM Assertion OK : test 18: res = something MOD 10 )
-+ ITEM Assertion OK : test 19: res = something AND 1 )
-+ ITEM Assertion OK : test 20: res = something AND 0 )
-+ ITEM Assertion OK : test 21: res = something OR 12)
-+ ITEM Assertion OK : test 22: res = something OR 0 )
-+ ITEM Assertion OK : test 23: res = something XOR 0 )
-+ ITEM Assertion OK : test 24: res = something XOR 1 )
-+ ITEM Assertion OK : test 25: res = something EQV 0 )
-+ ITEM Assertion OK : test 26: res = something EQV 1 )
-+ ITEM Assertion OK : test 27: res = something IMP 0 )
-+ ITEM Assertion OK : test 28: res = something IMP 1 )
-+ ITEM Assertion OK : test 29: res = something IMP 14 )
-+ ITEM Assertion OK : test 30: res = NOT something )
-+ ITEM Assertion OK : test 31: res = something + 12 )
-+ ITEM Assertion OK : test 32: res = something - 12 )
-+ ITEM Assertion OK : test 33: res = -something )
-+ ITEM Assertion OK : test 34: res = something * 12 )
-+Test Results
-+============
-+
-+Tests passed: 34
-+Tests failed: 0
-+
-+END 'TestAddress
-+ TEST OK : TestAddress
-+Test run finished : 24/09/2008 10:58:20
-Index: sc/source/ui/vba/testvba/TestDocuments/logs/unix/TestIntersection.log
-===================================================================
---- sc/source/ui/vba/testvba/TestDocuments/logs/unix/TestIntersection.log (revision 0)
-+++ sc/source/ui/vba/testvba/TestDocuments/logs/unix/TestIntersection.log (revision 276288)
-@@ -0,0 +1,26 @@
-+Test run started : 13/01/2009 14:31:43
-+----------------------------------------------------------------
-+TestIntersection
-+ TEST START : TestIntersection
-+ ITEM Assertion OK : test1 Application.Intersect( Range('A2:D10'), Range('C4:E6'))
-+ ITEM Assertion OK : test2 Application.Intersect( Range('A2:D10'), Range('A4:G10'))
-+ ITEM Assertion OK : test3 Application.Intersect( Range('A2:c8,d2:f8,g2:i8'), Range('A4:G10'))
-+ ITEM Assertion OK : test4 Application.Intersect( Range('A4:G10'), Range('A2:c8,d2:f8,g2:i8'))
-+ ITEM Assertion OK : test5 Application.Intersect( Range('A2:c8,d2:f8,g2:i8'), Range('g4:i10,A4:G10'))
-+ ITEM Assertion OK : test6 Application.Intersect( Range('g4:i10,A4:G10'), Range('A2:c8,d2:f8,g2:i8'))
-+ ITEM Assertion OK : test7 Application.Intersect( Range('a2:d10,b5:e10'), Range('a5:i10'))
-+ ITEM Assertion OK : test8 Application.Intersect( Range('a2:c8,d2:f8'), Range('b6:e9,a6:f9'))
-+ ITEM Assertion OK : test9 Application.Intersect( Range('a2:c8,e2:f8'), Range('b6:e9,a6:f9'))
-+ ITEM Assertion OK : test10 Application.Intersect( Range('a1:a3,c1:c3'), Range('a2:c3'))
-+ ITEM Assertion OK : test11 Application.Intersect( Range('a1:a3,b1:b3'), Range('a2:c3'))
-+ ITEM Assertion OK : test12 Application.Intersect( Range('a2:d5,b3:f7,c1:g4'), Range('b2:e6'))
-+ ITEM Assertion OK : test13 Range(" a2:d10,b5:e10,g13:j32 "), Range(" a5:i10,b6:e9 "), Range("b2:r5,f10:h19")
-+Test Results
-+============
-+
-+Tests passed: 13
-+Tests failed: 0
-+
-+END 'TestIntersection
-+ TEST OK : TestIntersection
-+Test run finished : 13/01/2009 14:31:43
-Index: sc/source/ui/vba/testvba/TestDocuments/logs/unix/replace.log
-===================================================================
---- sc/source/ui/vba/testvba/TestDocuments/logs/unix/replace.log (revision 276159)
-+++ sc/source/ui/vba/testvba/TestDocuments/logs/unix/replace.log (revision 276288)
-@@ -1,4 +1,4 @@
--Test run started : 17/12/2008 13:53:49
-+Test run started : 09/05/2008 10:21:46 AM
- BEGIN Replace
- TEST START : Test Replace function
- ITEM Assertion OK : common string:aefefdBc
-@@ -11,4 +11,4 @@ BEGIN Replace
- ITEM Assertion OK : start = 1, count = 0, not support in Unix: abcbcdBc
- TEST OK : Test Replace function
- END Replace
--Test run finished : 17/12/2008 13:53:49
-+Test run finished : 09/05/2008 10:21:47 AM
-Index: sc/source/ui/vba/testvba/TestDocuments/logs/unix/Ranges.log
-===================================================================
---- sc/source/ui/vba/testvba/TestDocuments/logs/unix/Ranges.log (revision 276159)
-+++ sc/source/ui/vba/testvba/TestDocuments/logs/unix/Ranges.log (revision 276288)
-@@ -1,4 +1,4 @@
--Test run started : 17/12/2008 14:18:34
-+Test run started : 10/03/2008 15:15:11
- ----------------------------------------------------------------
- ApplicationMethods
- TEST START : ApplicationMethods
-@@ -7,8 +7,8 @@ ApplicationMethods
- ITEM Assertion OK : Address of Application.Rows is: $1:$1
- ITEM Assertion OK : Address of Application.Range is: $1:$1,$5:$7
- ITEM Assertion OK : Please check manually: DefaultFilePath is: /data4/home/npower/Documents
-- ITEM Assertion OK : Please check manually: Library Path is: /media/disk/BUILD-related/CWS/my_working_copy/INSTALL_FOR_TEST/opt/UserInstallation/user/basic
-- ITEM Assertion OK : Please check manually: Template Path is: /media/disk/BUILD-related/CWS/my_working_copy/INSTALL_FOR_TEST/opt/UserInstallation/user/template
-+ ITEM Assertion OK : Please check manually: Library Path is: /data4/home/npower/.ooo-2.0/user/basic
-+ ITEM Assertion OK : Please check manually: Template Path is: /data4/home/npower/.ooo-2.0/user/template
- ITEM Assertion OK : FileSeparator is /
- ITEM Assertion OK : Name of ActiveWorkbook is: Ranges.xls
- END 'ApplicationMethods' Symbol
-@@ -111,8 +111,8 @@ END 'Value-Issue' Symbol
- ----------------------------------------------------------------
- AutoFit issue
- TEST START : AutoFit issue
-- ITEM Assertion OK : Columns.AutoFit: CurrentWidth is 679
-- ITEM Assertion OK : Rows.AutoFit: CurrentHeight is 546
-+ ITEM Assertion OK : Columns.AutoFit: CurrentWidth is 680
-+ ITEM Assertion OK : Rows.AutoFit: CurrentHeight is 554
- END 'AutoFit issue' Symbol
- TEST OK : AutoFit issue
- ----------------------------------------------------------------
-@@ -204,11 +204,11 @@ Heights and Widths
- ITEM Assertion OK : Range RowHeight is 40
- ITEM Assertion OK : Range ColumnWidth is 50
- ITEM Assertion OK : Range Height is 240
-- ITEM Assertion OK : Range Width is 787.5
-+ ITEM Assertion OK : Range Width is 795
- ITEM Assertion OK : Range RowHeight is 50
- ITEM Assertion OK : Range ColumnWidth is 50
- ITEM Assertion OK : Range Height is 300
-- ITEM Assertion OK : Range Width is 787.5
-+ ITEM Assertion OK : Range Width is 795
- ITEM Assertion OK : RowHeight is null: True
- ITEM Assertion OK : ColumnWidth is null: True
- END 'Heights and Widths' Symbol
-@@ -218,7 +218,7 @@ RangeRowColumn-Issue
- TEST START : RangeRowColumn-Issue
- ITEM Assertion OK : Row is: 8
- ITEM Assertion OK : Column is: 5
-- ITEM Assertion OK : EntireRow.Columns.Count = 1024
-+ ITEM Assertion OK : EntireRow.Columns.Count = 256
- ITEM Assertion OK : EntireColumn.Rows.Count = 131072
- END 'RangeRowColumn-Issue' Symbol
- TEST OK : RangeRowColumn-Issue
-@@ -255,7 +255,7 @@ End issue
- ITEM Assertion OK : - = $E$3
- ITEM Assertion OK : - = $A$8
- ITEM Assertion OK : - = $B$8
-- ITEM Assertion FAIL : - = $AMJ$8
-+ ITEM Assertion OK : - = $IV$8
- ITEM Assertion OK : - = $Z$8
- END 'End issue' Symbol
- TEST OK : End issue
-@@ -277,4 +277,4 @@ Validation
- ITEM Assertion OK : Validation Error Title is : Microsoft Excel
- END 'Validation' Symbol
- TEST OK : Validation
--Test run finished : 17/12/2008 14:18:40
-+Test run finished : 10/03/2008 15:15:13
-Index: sc/source/ui/vba/testvba/TestDocuments/logs/unix/TestAddress.log
-===================================================================
---- sc/source/ui/vba/testvba/TestDocuments/logs/unix/TestAddress.log (revision 276159)
-+++ sc/source/ui/vba/testvba/TestDocuments/logs/unix/TestAddress.log (revision 276288)
-@@ -1,4 +1,4 @@
--Test run started : 17/07/2007 20:56:04
-+Test run started : 12/05/2009 11:23:35
- ----------------------------------------------------------------
- TestAddress
- TEST START : TestAddress
-@@ -51,12 +51,17 @@ TestAddress
- ITEM Assertion OK : test47 Range('a2:b4').Rows('1:2')
- ITEM Assertion OK : test48 Range('a2:b4').Rows('2:2')
- ITEM Assertion OK : test49 Range('a2:b4').Rows('2:3')
-+ ITEM Assertion OK : test50 Range(' A2:B4 ')
-+ ITEM Assertion OK : test51 Range('A 2:B 4')
-+ ITEM Assertion OK : test52 Range('A2 : B4 ')
-+ ITEM Assertion OK : test53 Range('Sheet1 !A2 : B4 ')
-+ ITEM Assertion OK : test54 Range('Sheet1! A2 : B4 ')
- Test Results
- ============
-
--Tests passed: 49
-+Tests passed: 54
- Tests failed: 0
-
- END 'TestAddress
- TEST OK : TestAddress
--Test run finished : 17/07/2007 20:56:05
-+Test run finished : 12/05/2009 11:23:35
-Index: sc/source/ui/vba/testvba/TestDocuments/logs/unix/TestUnion.log
-===================================================================
---- sc/source/ui/vba/testvba/TestDocuments/logs/unix/TestUnion.log (revision 0)
-+++ sc/source/ui/vba/testvba/TestDocuments/logs/unix/TestUnion.log (revision 276288)
-@@ -0,0 +1,17 @@
-+Test run started : 13/01/2009 14:32:16
-+----------------------------------------------------------------
-+TestUnion
-+ TEST START : TestUnion
-+ ITEM Assertion OK : test1Application.Range('A2:D10'), Range('C4:E6')
-+ ITEM Assertion OK : test2Application.Range('A2:D5,a3:d4'), Range('A4:G10')
-+ ITEM Assertion OK : test3Application.Range('A4:G10,A1:B6'), Range('A2:D5,A3:D4')
-+ ITEM Assertion OK : test4Application.Range('A5:D10'), Range('B5:E10')
-+Test Results
-+============
-+
-+Tests passed: 4
-+Tests failed: 0
-+
-+END 'TestUnion
-+ TEST OK : TestUnion
-+Test run finished : 13/01/2009 14:32:16
-Index: sc/source/ui/vba/testvba/TestDocuments/logs/unix/format.log
-===================================================================
---- sc/source/ui/vba/testvba/TestDocuments/logs/unix/format.log (revision 276159)
-+++ sc/source/ui/vba/testvba/TestDocuments/logs/unix/format.log (revision 276288)
-@@ -1,4 +1,4 @@
--Test run started : 17/12/2008 14:15:22
-+Test run started : 2008ï¼09ï¼18 11:35:34
- BEGIN Format
- TEST START : Test Predefined_Number_Format_Sample function
- ITEM Assertion OK : General Number: 562486.2356
-@@ -33,4 +33,4 @@ BEGIN Format
- ITEM Assertion OK : >: VBA
- TEST OK : Test Custom_Text_Format_Sample function
- END Format
--Test run finished : 17/12/2008 14:15:22
-+Test run finished : 2008ï¼09ï¼18 11:35:34
-Index: sc/source/ui/vba/testvba/TestDocuments/logs/unix/CalcFont.log
-===================================================================
---- sc/source/ui/vba/testvba/TestDocuments/logs/unix/CalcFont.log (revision 0)
-+++ sc/source/ui/vba/testvba/TestDocuments/logs/unix/CalcFont.log (revision 276288)
-@@ -0,0 +1,17 @@
-+Test run started : 10/09/2008 02:40:17 PM
-+CalcFont_Format
-+ TEST START : Font_Format
-+ ITEM Assertion OK : correctly set font to Bold
-+ ITEM Assertion OK : correctly set font to Italic
-+ ITEM Assertion OK : correctly read FontStyle
-+ ITEM Assertion OK : correctly set font to Shadow
-+ ITEM Assertion OK : correctly set font color
-+ ITEM Assertion OK : correctly set font color index
-+ ITEM Assertion OK : correctly set font name
-+ ITEM Assertion OK : correctly set font outline
-+ ITEM Assertion OK : correctly set font size
-+ ITEM Assertion OK : correctly set font strikethrough
-+ ITEM Assertion OK : correctly set font underline
-+ TEST Success. : Font_Format
-+CalcFont_Format
-+Test run finished : 10/09/2008 02:40:17 PM
-Index: sc/source/ui/vba/testvba/TestDocuments/logs/unix/window2.log
-===================================================================
---- sc/source/ui/vba/testvba/TestDocuments/logs/unix/window2.log (revision 276159)
-+++ sc/source/ui/vba/testvba/TestDocuments/logs/unix/window2.log (revision 276288)
-@@ -1,20 +1,15 @@
--Test run started : 05/29/2008 02:55:48 PM
-+Test run started : 2008ï¼09ï¼22 11:18:57
- BEGIN Window2
- TEST START : Test Window.SplitRow
-- ITEM Assertion OK : Test SplitColumn: 2
-- ITEM Assertion FAIL : Test SplitRow: 5
-- ITEM Assertion FAIL : Test SplitVertical: 64.5090003183026
-- ITEM Assertion OK : Test SplitHorizontal: 502.570118758869
-- ITEM Assertion OK : Test SplitVertical: 242.283803521067
-- ITEM Assertion OK : Test SplitRow: 19
-- ITEM Assertion OK : Test SplitHorizontal: 242.283803521067
-- ITEM Assertion OK : Test SplitColumn: 1
-- ITEM Assertion FAIL : Test SplitRow: 8
-- ITEM Assertion OK : Test SplitColumn: 10
-+ ITEM Assertion OK : Test SplitColumn: 2 (Test only applies to maximized Window and at least has 800*600 solotion)
-+ ITEM Assertion OK : Test SplitRow: 2 (Test only applies to maximized Window and at least has 800*600 solotion)
-+ ITEM Assertion OK : Test SplitVertical: 242.465788476212
-+ ITEM Assertion OK : Test SplitHorizontal: 242.465788476212
-+ ITEM Assertion OK : Test SplitRow: 4 (Test only applies to maximized Window and at least has 800*600 solotion)
-+ ITEM Assertion OK : Test SplitColumn: 3 (Test only applies to maximized Window and at least has 800*600 solotion)
- ITEM Assertion OK : Test SplitColumn: 0
- ITEM Assertion OK : Test SplitRow: 0
- TEST OK : Test Window.SplitRow
--TEST ERROR - no test begun: Test Window.SplitRow
- TEST START : Test Window.DisplayGridlines
- ITEM Assertion OK : Test gridlines are on
- ITEM Assertion OK : Test gridlines are off
-@@ -25,7 +20,8 @@ BEGIN Window2
- TEST OK : Test Window.DisplayHeadings
- TEST START : Test Window.Visibility
- ITEM Assertion OK : Window is visible
-- TEST FAIL : Test Window.Visibility (hit error handler).
-+ ITEM Assertion OK : Window is not visible
-+ TEST OK : Test Window.Visibility
- TEST START : Test Window.FreezePanes
- ITEM Assertion OK : Test no panes frozen
- ITEM Assertion OK : Test panes frozen at center
-@@ -42,4 +38,4 @@ BEGIN Window2
- ITEM Assertion OK : Application.Windows Count: 1
- TEST OK : Test Windows.Count
- END Window2
--Test run finished : 05/29/2008 02:55:48 PM
-+Test run finished : 2008ï¼09ï¼22 11:18:58
-Index: sc/source/ui/vba/testvba/TestDocuments/logs/unix/MiscOperatorTests.log
-===================================================================
---- sc/source/ui/vba/testvba/TestDocuments/logs/unix/MiscOperatorTests.log (revision 0)
-+++ sc/source/ui/vba/testvba/TestDocuments/logs/unix/MiscOperatorTests.log (revision 276288)
-@@ -0,0 +1,30 @@
-+Test run started : 12/05/2009 12:36:15
-+----------------------------------------------------------------
-+TestAddress
-+ TEST START : TestAddress
-+ ITEM Assertion OK : test1: res = Not ( A > B )
-+ ITEM Assertion OK : test2: res = Not ( B > A )
-+ ITEM Assertion OK : test3: res = Not ( D )
-+ ITEM Assertion OK : test4: res = Not A
-+ ITEM Assertion OK : test5: res = ( A > D )
-+ ITEM Assertion OK : test6: res = ( D > A )
-+ ITEM Assertion OK : test7: res = ( A < D )
-+ ITEM Assertion OK : test8: res = ( D < A )
-+ ITEM Assertion OK : test9: res = ( A >= D )
-+ ITEM Assertion OK : test10: res = ( D >= A )
-+ ITEM Assertion OK : test11: res = ( A <= D )
-+ ITEM Assertion OK : test12: res = ( D <= A )
-+ ITEM Assertion OK : test13: res = ( D = A )
-+ ITEM Assertion OK : test14: res = ( A = D )
-+ ITEM Assertion OK : test15: res = ( D <> A )
-+ ITEM Assertion OK : test16: res = ( A <> D )
-+ ITEM Assertion OK : test17: ( A = D ) = True
-+Test Results
-+============
-+
-+Tests passed: 17
-+Tests failed: 0
-+
-+END 'TestAddress
-+ TEST OK : TestAddress
-+Test run finished : 12/05/2009 12:36:15
Index: sc/source/ui/vba/testvba/TestDocuments/VariantTest.xls
===================================================================
Cannot display: file marked as a binary type.
commit c767fed57bc97f2c44402c5b2626db27100c0605
Author: Jan Nieuwenhuizen <janneke at gnu.org>
Date: Thu Oct 22 19:15:57 2009 +0200
Update xlsx-separate-lib-vba-fallback-tweak to ooo320.
* Modified patches/dev300/apply
* Modified patches/vba/xlsx-separate-lib-vba-fallback-tweak.diff
diff --git a/patches/dev300/apply b/patches/dev300/apply
index f746a50..66aa89b 100644
--- a/patches/dev300/apply
+++ b/patches/dev300/apply
@@ -3127,29 +3127,13 @@ pptx-gfx-layout-fix.diff, thorsten
# FIXME: 2009-08-17: Upstream code has been restructured. --tml
# pptx-fix-connector-crash.diff, n#499129, thorsten
-# For the purpose of the 3.1 release, all the pptx and xlsx are done as
-# separate libraries as well, so that we are safe wrt. the binary export
-# FIXME: Remove this patch (and update the other xlsx patches) after 3.1 is
-# branched
-# FIXME: 2009-08-17: OK, do as it says above then? --tml
-# xlsx-filter-as-a-separate-lib.diff
-
-[ OOXMLExport >= ooo310-m17 ]
-# update with the changes introduced up to m17
-# FIXME: 2009-08-17: OK, do as it says above then? --tml
-# xlsx-filter-as-a-separate-lib-m17-update.diff
-
[ OOXMLExport ]
-# tweak to above ( associated with vba-fallback-to-calling-doc-context.diff )
-
-# FIXME: 2009-08-17: Still more related. --tml
-# xlsx-separate-lib-vba-fallback-tweak.diff
+xlsx-separate-lib-vba-fallback-tweak.diff
# Snapshot of the xlsx export filter at the time of creation of ooxml03
# This is until 0453-Fix-formatted-text-change-tracking.patch, inluding, and
# should contain all the available changes.
-# FIXME: 2009-08-17: ooxml03 related, so bypass for now... --tml
# xlsx-snapshot.diff
# Make the xlsx export and import work at the same time
diff --git a/patches/vba/xlsx-separate-lib-vba-fallback-tweak.diff b/patches/vba/xlsx-separate-lib-vba-fallback-tweak.diff
index f6409e5..3f3f7be 100644
--- a/patches/vba/xlsx-separate-lib-vba-fallback-tweak.diff
+++ b/patches/vba/xlsx-separate-lib-vba-fallback-tweak.diff
@@ -1,7 +1,7 @@
diff --git sc/source/filter/xlsx/xlsx-excimp8.cxx sc/source/filter/xlsx/xlsx-excimp8.cxx
index 2995571..d03666e 100644
---- sc/source/filter/xlsx/xlsx-excimp8.cxx
-+++ sc/source/filter/xlsx/xlsx-excimp8.cxx
+--- sc/source/filter/excel/excimp8.cxx
++++ sc/source/filter/exel/excimp8.cxx
@@ -277,7 +277,9 @@ void ImportExcel8::ReadBasic( void )
if( bLoadCode || bLoadStrg )
{
commit 55a89eb79da839dc471253b11dfaea5e50b3ddff
Author: Jan Nieuwenhuizen <janneke at gnu.org>
Date: Thu Oct 22 16:49:09 2009 +0200
cws-vbasupportdev300.diff: remove log file patching. Fixes make patch.
* Modified patches/vba/cws-vbasupportdev300.diff
diff --git a/patches/vba/cws-vbasupportdev300.diff b/patches/vba/cws-vbasupportdev300.diff
index 4374621..db13077 100644
--- a/patches/vba/cws-vbasupportdev300.diff
+++ b/patches/vba/cws-vbasupportdev300.diff
@@ -35937,2131 +35937,7 @@ ___________________________________________________________________
Added: svn:mime-type
+ application/octet-stream
-Index: sc/source/ui/vba/testvba/TestDocuments/logs/unix/VariantTest.log
-===================================================================
---- sc/source/ui/vba/testvba/TestDocuments/logs/unix/VariantTest.log (revision 0)
-+++ sc/source/ui/vba/testvba/TestDocuments/logs/unix/VariantTest.log (revision 276288)
-@@ -0,0 +1,47 @@
-+Test run started : 24/09/2008 10:58:18
-+----------------------------------------------------------------
-+TestAddress
-+ TEST START : TestAddress
-+ ITEM Assertion OK : test1: res = (aboo = '')
-+ ITEM Assertion OK : test 2: res = (aboo = 'fiddlesticks')
-+ ITEM Assertion OK : test 3: res = ('' = aboo)
-+ ITEM Assertion OK : test 4: res = ('fiddlesticks' = aboo )
-+ ITEM Assertion OK : test 5: res = (testString = '')
-+ ITEM Assertion OK : test 6: res = (testString = 'fiddlesticks')
-+ ITEM Assertion OK : test 7: res = ('' = testString)
-+ ITEM Assertion OK : test 8: res = ('fiddlesticks' = testString )
-+ ITEM Assertion OK : test 9: res = ( aboo < " )
-+ ITEM Assertion OK : test 10: res = ( testString < " )
-+ ITEM Assertion OK : test 11: res = ( aboo > " )
-+ ITEM Assertion OK : test 12: res = ( testString > " )
-+ ITEM Assertion OK : test 13: res = ( aboo <> '' )
-+ ITEM Assertion OK : test 14: res = ( testString <> '' )
-+ ITEM Assertion OK : test 15: res = (aboo = something/14)
-+ ITEM Assertion OK : test 16: res = something + 'string'
-+ ITEM Assertion OK : test 17: res = something & 'string'
-+ ITEM Assertion OK : test 18: res = something MOD 10 )
-+ ITEM Assertion OK : test 19: res = something AND 1 )
-+ ITEM Assertion OK : test 20: res = something AND 0 )
-+ ITEM Assertion OK : test 21: res = something OR 12)
-+ ITEM Assertion OK : test 22: res = something OR 0 )
-+ ITEM Assertion OK : test 23: res = something XOR 0 )
-+ ITEM Assertion OK : test 24: res = something XOR 1 )
-+ ITEM Assertion OK : test 25: res = something EQV 0 )
-+ ITEM Assertion OK : test 26: res = something EQV 1 )
-+ ITEM Assertion OK : test 27: res = something IMP 0 )
-+ ITEM Assertion OK : test 28: res = something IMP 1 )
-+ ITEM Assertion OK : test 29: res = something IMP 14 )
-+ ITEM Assertion OK : test 30: res = NOT something )
-+ ITEM Assertion OK : test 31: res = something + 12 )
-+ ITEM Assertion OK : test 32: res = something - 12 )
-+ ITEM Assertion OK : test 33: res = -something )
-+ ITEM Assertion OK : test 34: res = something * 12 )
-+Test Results
-+============
-+
-+Tests passed: 34
-+Tests failed: 0
-+
-+END 'TestAddress
-+ TEST OK : TestAddress
-+Test run finished : 24/09/2008 10:58:20
-Index: sc/source/ui/vba/testvba/TestDocuments/logs/unix/TestIntersection.log
-===================================================================
---- sc/source/ui/vba/testvba/TestDocuments/logs/unix/TestIntersection.log (revision 0)
-+++ sc/source/ui/vba/testvba/TestDocuments/logs/unix/TestIntersection.log (revision 276288)
-@@ -0,0 +1,26 @@
-+Test run started : 13/01/2009 14:31:43
-+----------------------------------------------------------------
-+TestIntersection
-+ TEST START : TestIntersection
-+ ITEM Assertion OK : test1 Application.Intersect( Range('A2:D10'), Range('C4:E6'))
-+ ITEM Assertion OK : test2 Application.Intersect( Range('A2:D10'), Range('A4:G10'))
-+ ITEM Assertion OK : test3 Application.Intersect( Range('A2:c8,d2:f8,g2:i8'), Range('A4:G10'))
-+ ITEM Assertion OK : test4 Application.Intersect( Range('A4:G10'), Range('A2:c8,d2:f8,g2:i8'))
-+ ITEM Assertion OK : test5 Application.Intersect( Range('A2:c8,d2:f8,g2:i8'), Range('g4:i10,A4:G10'))
-+ ITEM Assertion OK : test6 Application.Intersect( Range('g4:i10,A4:G10'), Range('A2:c8,d2:f8,g2:i8'))
-+ ITEM Assertion OK : test7 Application.Intersect( Range('a2:d10,b5:e10'), Range('a5:i10'))
-+ ITEM Assertion OK : test8 Application.Intersect( Range('a2:c8,d2:f8'), Range('b6:e9,a6:f9'))
-+ ITEM Assertion OK : test9 Application.Intersect( Range('a2:c8,e2:f8'), Range('b6:e9,a6:f9'))
-+ ITEM Assertion OK : test10 Application.Intersect( Range('a1:a3,c1:c3'), Range('a2:c3'))
-+ ITEM Assertion OK : test11 Application.Intersect( Range('a1:a3,b1:b3'), Range('a2:c3'))
-+ ITEM Assertion OK : test12 Application.Intersect( Range('a2:d5,b3:f7,c1:g4'), Range('b2:e6'))
-+ ITEM Assertion OK : test13 Range(" a2:d10,b5:e10,g13:j32 "), Range(" a5:i10,b6:e9 "), Range("b2:r5,f10:h19")
-+Test Results
-+============
-+
-+Tests passed: 13
-+Tests failed: 0
-+
-+END 'TestIntersection
-+ TEST OK : TestIntersection
-+Test run finished : 13/01/2009 14:31:43
-Index: sc/source/ui/vba/testvba/TestDocuments/logs/unix/replace.log
-===================================================================
---- sc/source/ui/vba/testvba/TestDocuments/logs/unix/replace.log (revision 276159)
-+++ sc/source/ui/vba/testvba/TestDocuments/logs/unix/replace.log (revision 276288)
-@@ -1,4 +1,4 @@
--Test run started : 17/12/2008 13:53:49
-+Test run started : 09/05/2008 10:21:46 AM
- BEGIN Replace
- TEST START : Test Replace function
- ITEM Assertion OK : common string:aefefdBc
-@@ -11,4 +11,4 @@ BEGIN Replace
- ITEM Assertion OK : start = 1, count = 0, not support in Unix: abcbcdBc
- TEST OK : Test Replace function
- END Replace
--Test run finished : 17/12/2008 13:53:49
-+Test run finished : 09/05/2008 10:21:47 AM
-Index: sc/source/ui/vba/testvba/TestDocuments/logs/unix/Ranges.log
-===================================================================
---- sc/source/ui/vba/testvba/TestDocuments/logs/unix/Ranges.log (revision 276159)
-+++ sc/source/ui/vba/testvba/TestDocuments/logs/unix/Ranges.log (revision 276288)
-@@ -1,4 +1,4 @@
--Test run started : 17/12/2008 14:18:34
-+Test run started : 10/03/2008 15:15:11
- ----------------------------------------------------------------
- ApplicationMethods
- TEST START : ApplicationMethods
-@@ -7,8 +7,8 @@ ApplicationMethods
- ITEM Assertion OK : Address of Application.Rows is: $1:$1
- ITEM Assertion OK : Address of Application.Range is: $1:$1,$5:$7
- ITEM Assertion OK : Please check manually: DefaultFilePath is: /data4/home/npower/Documents
-- ITEM Assertion OK : Please check manually: Library Path is: /media/disk/BUILD-related/CWS/my_working_copy/INSTALL_FOR_TEST/opt/UserInstallation/user/basic
-- ITEM Assertion OK : Please check manually: Template Path is: /media/disk/BUILD-related/CWS/my_working_copy/INSTALL_FOR_TEST/opt/UserInstallation/user/template
-+ ITEM Assertion OK : Please check manually: Library Path is: /data4/home/npower/.ooo-2.0/user/basic
-+ ITEM Assertion OK : Please check manually: Template Path is: /data4/home/npower/.ooo-2.0/user/template
- ITEM Assertion OK : FileSeparator is /
- ITEM Assertion OK : Name of ActiveWorkbook is: Ranges.xls
- END 'ApplicationMethods' Symbol
-@@ -111,8 +111,8 @@ END 'Value-Issue' Symbol
- ----------------------------------------------------------------
- AutoFit issue
- TEST START : AutoFit issue
-- ITEM Assertion OK : Columns.AutoFit: CurrentWidth is 679
-- ITEM Assertion OK : Rows.AutoFit: CurrentHeight is 546
-+ ITEM Assertion OK : Columns.AutoFit: CurrentWidth is 680
-+ ITEM Assertion OK : Rows.AutoFit: CurrentHeight is 554
- END 'AutoFit issue' Symbol
- TEST OK : AutoFit issue
- ----------------------------------------------------------------
-@@ -204,11 +204,11 @@ Heights and Widths
- ITEM Assertion OK : Range RowHeight is 40
- ITEM Assertion OK : Range ColumnWidth is 50
- ITEM Assertion OK : Range Height is 240
-- ITEM Assertion OK : Range Width is 787.5
-+ ITEM Assertion OK : Range Width is 795
- ITEM Assertion OK : Range RowHeight is 50
- ITEM Assertion OK : Range ColumnWidth is 50
- ITEM Assertion OK : Range Height is 300
-- ITEM Assertion OK : Range Width is 787.5
-+ ITEM Assertion OK : Range Width is 795
- ITEM Assertion OK : RowHeight is null: True
- ITEM Assertion OK : ColumnWidth is null: True
- END 'Heights and Widths' Symbol
-@@ -218,7 +218,7 @@ RangeRowColumn-Issue
- TEST START : RangeRowColumn-Issue
- ITEM Assertion OK : Row is: 8
- ITEM Assertion OK : Column is: 5
-- ITEM Assertion OK : EntireRow.Columns.Count = 1024
-+ ITEM Assertion OK : EntireRow.Columns.Count = 256
- ITEM Assertion OK : EntireColumn.Rows.Count = 131072
- END 'RangeRowColumn-Issue' Symbol
- TEST OK : RangeRowColumn-Issue
-@@ -255,7 +255,7 @@ End issue
- ITEM Assertion OK : - = $E$3
- ITEM Assertion OK : - = $A$8
- ITEM Assertion OK : - = $B$8
-- ITEM Assertion FAIL : - = $AMJ$8
-+ ITEM Assertion OK : - = $IV$8
- ITEM Assertion OK : - = $Z$8
- END 'End issue' Symbol
- TEST OK : End issue
-@@ -277,4 +277,4 @@ Validation
- ITEM Assertion OK : Validation Error Title is : Microsoft Excel
- END 'Validation' Symbol
- TEST OK : Validation
--Test run finished : 17/12/2008 14:18:40
-+Test run finished : 10/03/2008 15:15:13
-Index: sc/source/ui/vba/testvba/TestDocuments/logs/unix/TestAddress.log
-===================================================================
---- sc/source/ui/vba/testvba/TestDocuments/logs/unix/TestAddress.log (revision 276159)
-+++ sc/source/ui/vba/testvba/TestDocuments/logs/unix/TestAddress.log (revision 276288)
-@@ -1,4 +1,4 @@
--Test run started : 17/07/2007 20:56:04
-+Test run started : 12/05/2009 11:23:35
- ----------------------------------------------------------------
- TestAddress
- TEST START : TestAddress
-@@ -51,12 +51,17 @@ TestAddress
- ITEM Assertion OK : test47 Range('a2:b4').Rows('1:2')
- ITEM Assertion OK : test48 Range('a2:b4').Rows('2:2')
- ITEM Assertion OK : test49 Range('a2:b4').Rows('2:3')
-+ ITEM Assertion OK : test50 Range(' A2:B4 ')
-+ ITEM Assertion OK : test51 Range('A 2:B 4')
-+ ITEM Assertion OK : test52 Range('A2 : B4 ')
-+ ITEM Assertion OK : test53 Range('Sheet1 !A2 : B4 ')
-+ ITEM Assertion OK : test54 Range('Sheet1! A2 : B4 ')
- Test Results
- ============
-
--Tests passed: 49
-+Tests passed: 54
- Tests failed: 0
-
- END 'TestAddress
- TEST OK : TestAddress
--Test run finished : 17/07/2007 20:56:05
-+Test run finished : 12/05/2009 11:23:35
-Index: sc/source/ui/vba/testvba/TestDocuments/logs/unix/TestUnion.log
-===================================================================
---- sc/source/ui/vba/testvba/TestDocuments/logs/unix/TestUnion.log (revision 0)
-+++ sc/source/ui/vba/testvba/TestDocuments/logs/unix/TestUnion.log (revision 276288)
-@@ -0,0 +1,17 @@
-+Test run started : 13/01/2009 14:32:16
-+----------------------------------------------------------------
-+TestUnion
-+ TEST START : TestUnion
-+ ITEM Assertion OK : test1Application.Range('A2:D10'), Range('C4:E6')
-+ ITEM Assertion OK : test2Application.Range('A2:D5,a3:d4'), Range('A4:G10')
-+ ITEM Assertion OK : test3Application.Range('A4:G10,A1:B6'), Range('A2:D5,A3:D4')
-+ ITEM Assertion OK : test4Application.Range('A5:D10'), Range('B5:E10')
-+Test Results
-+============
-+
-+Tests passed: 4
-+Tests failed: 0
-+
-+END 'TestUnion
-+ TEST OK : TestUnion
-+Test run finished : 13/01/2009 14:32:16
-Index: sc/source/ui/vba/testvba/TestDocuments/logs/unix/format.log
-===================================================================
---- sc/source/ui/vba/testvba/TestDocuments/logs/unix/format.log (revision 276159)
-+++ sc/source/ui/vba/testvba/TestDocuments/logs/unix/format.log (revision 276288)
-@@ -1,4 +1,4 @@
--Test run started : 17/12/2008 14:15:22
-+Test run started : 2008ï¼09ï¼18 11:35:34
- BEGIN Format
- TEST START : Test Predefined_Number_Format_Sample function
- ITEM Assertion OK : General Number: 562486.2356
-@@ -33,4 +33,4 @@ BEGIN Format
- ITEM Assertion OK : >: VBA
- TEST OK : Test Custom_Text_Format_Sample function
- END Format
--Test run finished : 17/12/2008 14:15:22
-+Test run finished : 2008ï¼09ï¼18 11:35:34
-Index: sc/source/ui/vba/testvba/TestDocuments/logs/unix/CalcFont.log
-===================================================================
---- sc/source/ui/vba/testvba/TestDocuments/logs/unix/CalcFont.log (revision 0)
-+++ sc/source/ui/vba/testvba/TestDocuments/logs/unix/CalcFont.log (revision 276288)
-@@ -0,0 +1,17 @@
-+Test run started : 10/09/2008 02:40:17 PM
-+CalcFont_Format
-+ TEST START : Font_Format
-+ ITEM Assertion OK : correctly set font to Bold
-+ ITEM Assertion OK : correctly set font to Italic
-+ ITEM Assertion OK : correctly read FontStyle
-+ ITEM Assertion OK : correctly set font to Shadow
-+ ITEM Assertion OK : correctly set font color
-+ ITEM Assertion OK : correctly set font color index
-+ ITEM Assertion OK : correctly set font name
-+ ITEM Assertion OK : correctly set font outline
-+ ITEM Assertion OK : correctly set font size
-+ ITEM Assertion OK : correctly set font strikethrough
-+ ITEM Assertion OK : correctly set font underline
-+ TEST Success. : Font_Format
-+CalcFont_Format
-+Test run finished : 10/09/2008 02:40:17 PM
-Index: sc/source/ui/vba/testvba/TestDocuments/logs/unix/window2.log
-===================================================================
---- sc/source/ui/vba/testvba/TestDocuments/logs/unix/window2.log (revision 276159)
-+++ sc/source/ui/vba/testvba/TestDocuments/logs/unix/window2.log (revision 276288)
-@@ -1,20 +1,15 @@
--Test run started : 05/29/2008 02:55:48 PM
-+Test run started : 2008ï¼09ï¼22 11:18:57
- BEGIN Window2
- TEST START : Test Window.SplitRow
-- ITEM Assertion OK : Test SplitColumn: 2
-- ITEM Assertion FAIL : Test SplitRow: 5
-- ITEM Assertion FAIL : Test SplitVertical: 64.5090003183026
-- ITEM Assertion OK : Test SplitHorizontal: 502.570118758869
-- ITEM Assertion OK : Test SplitVertical: 242.283803521067
-- ITEM Assertion OK : Test SplitRow: 19
-- ITEM Assertion OK : Test SplitHorizontal: 242.283803521067
-- ITEM Assertion OK : Test SplitColumn: 1
-- ITEM Assertion FAIL : Test SplitRow: 8
-- ITEM Assertion OK : Test SplitColumn: 10
-+ ITEM Assertion OK : Test SplitColumn: 2 (Test only applies to maximized Window and at least has 800*600 solotion)
-+ ITEM Assertion OK : Test SplitRow: 2 (Test only applies to maximized Window and at least has 800*600 solotion)
-+ ITEM Assertion OK : Test SplitVertical: 242.465788476212
-+ ITEM Assertion OK : Test SplitHorizontal: 242.465788476212
-+ ITEM Assertion OK : Test SplitRow: 4 (Test only applies to maximized Window and at least has 800*600 solotion)
-+ ITEM Assertion OK : Test SplitColumn: 3 (Test only applies to maximized Window and at least has 800*600 solotion)
- ITEM Assertion OK : Test SplitColumn: 0
- ITEM Assertion OK : Test SplitRow: 0
- TEST OK : Test Window.SplitRow
--TEST ERROR - no test begun: Test Window.SplitRow
- TEST START : Test Window.DisplayGridlines
- ITEM Assertion OK : Test gridlines are on
- ITEM Assertion OK : Test gridlines are off
-@@ -25,7 +20,8 @@ BEGIN Window2
- TEST OK : Test Window.DisplayHeadings
- TEST START : Test Window.Visibility
- ITEM Assertion OK : Window is visible
-- TEST FAIL : Test Window.Visibility (hit error handler).
-+ ITEM Assertion OK : Window is not visible
-+ TEST OK : Test Window.Visibility
- TEST START : Test Window.FreezePanes
- ITEM Assertion OK : Test no panes frozen
- ITEM Assertion OK : Test panes frozen at center
-@@ -42,4 +38,4 @@ BEGIN Window2
- ITEM Assertion OK : Application.Windows Count: 1
- TEST OK : Test Windows.Count
- END Window2
--Test run finished : 05/29/2008 02:55:48 PM
-+Test run finished : 2008ï¼09ï¼22 11:18:58
-Index: sc/source/ui/vba/testvba/TestDocuments/logs/unix/MiscOperatorTests.log
-===================================================================
---- sc/source/ui/vba/testvba/TestDocuments/logs/unix/MiscOperatorTests.log (revision 0)
-+++ sc/source/ui/vba/testvba/TestDocuments/logs/unix/MiscOperatorTests.log (revision 276288)
-@@ -0,0 +1,30 @@
-+Test run started : 12/05/2009 12:36:15
-+----------------------------------------------------------------
-+TestAddress
-+ TEST START : TestAddress
-+ ITEM Assertion OK : test1: res = Not ( A > B )
-+ ITEM Assertion OK : test2: res = Not ( B > A )
-+ ITEM Assertion OK : test3: res = Not ( D )
-+ ITEM Assertion OK : test4: res = Not A
-+ ITEM Assertion OK : test5: res = ( A > D )
-+ ITEM Assertion OK : test6: res = ( D > A )
-+ ITEM Assertion OK : test7: res = ( A < D )
-+ ITEM Assertion OK : test8: res = ( D < A )
-+ ITEM Assertion OK : test9: res = ( A >= D )
-+ ITEM Assertion OK : test10: res = ( D >= A )
-+ ITEM Assertion OK : test11: res = ( A <= D )
-+ ITEM Assertion OK : test12: res = ( D <= A )
-+ ITEM Assertion OK : test13: res = ( D = A )
-+ ITEM Assertion OK : test14: res = ( A = D )
-+ ITEM Assertion OK : test15: res = ( D <> A )
-+ ITEM Assertion OK : test16: res = ( A <> D )
-+ ITEM Assertion OK : test17: ( A = D ) = True
-+Test Results
-+============
-+
-+Tests passed: 17
-+Tests failed: 0
-+
-+END 'TestAddress
-+ TEST OK : TestAddress
-+Test run finished : 12/05/2009 12:36:15
-Index: sc/source/ui/vba/testvba/TestDocuments/VariantTest.xls
-===================================================================
-Cannot display: file marked as a binary type.
-svn:mime-type = application/octet-stream
-
-Property changes on: sc/source/ui/vba/testvba/TestDocuments/VariantTest.xls
-___________________________________________________________________
-Added: svn:mime-type
- + application/octet-stream
-
-Index: sc/source/ui/vba/testvba/TestDocuments/TestIntersection.xls
-===================================================================
-Cannot display: file marked as a binary type.
-svn:mime-type = application/octet-stream
-
-Property changes on: sc/source/ui/vba/testvba/TestDocuments/TestIntersection.xls
-___________________________________________________________________
-Added: svn:mime-type
- + application/octet-stream
-Index: sc/source/ui/vba/testvba/runTests.pl
-===================================================================
---- sc/source/ui/vba/testvba/runTests.pl (revision 276159)
-+++ sc/source/ui/vba/testvba/runTests.pl (revision 276288)
-@@ -20,7 +20,7 @@ my $theResult;
- my $officepath = shift || die "please specify path to office installation program dir";
- my $DocName = shift || "";
- my $programpath = "$officepath"."3/program:$officepath/program:";
--my $basiclibrarypath = "$officepath/basis3.1/program";
-+my $basiclibrarypath = "$officepath/basis3.2/program";
- my $urelibpath = "$officepath/ure/lib";
- my $binext = "";
- my $testDocDir = "$binDir/TestDocuments";
-Index: sc/source/ui/vba/testvba/Logs/TestCalc_Rangetest2.log
-===================================================================
---- sc/source/ui/vba/testvba/Logs/TestCalc_Rangetest2.log (revision 0)
-+++ sc/source/ui/vba/testvba/Logs/TestCalc_Rangetest2.log (revision 276288)
-@@ -0,0 +1,65 @@
-+Test run started : 17/09/2009 12:17:45
-+BEGIN TestCalc
-+ TEST START : RangeTest3
-+ ITEM Assertion OK : - setFormulaR1C1
-+ ITEM Assertion OK : - getFormulaR1C1
-+ ITEM Assertion OK : - Range.Copy() and Range.PasteSpecial()
-+ ITEM Assertion OK : - Range.Copy(Range("I10"))
-+ ITEM Assertion OK : PasteSpecial Paste:=xlPasteValues
-+ ITEM Assertion OK : PasteSpecial Paste:=xlPasteFormulas
-+ ITEM Assertion OK : PasteSpecial Paste:=xlPasteFormats
-+ ITEM Assertion OK : PasteSpecial
-+ ITEM Assertion OK : PasteSpecial SkipBlanks:=True
-+ ITEM Assertion OK : PasteSpecial Operation:=xlPasteSpecialOperationAdd
-+ ITEM Assertion OK : PasteSpecial Operation:=xlPasteSpecialOperationSubtract
-+ ITEM Assertion OK : PasteSpecial Operation:=xlPasteSpecialOperationMultiply
-+ ITEM Assertion OK : PasteSpecial Operation:=xlPasteSpecialOperationDivide
-+ ITEM Assertion OK : PasteSpecial Transpose:=True
-+ ITEM Assertion FAIL : ActiveWorkbook.FileFormat
-+ ITEM Assertion OK : ActiveWorkbook.Name
-+ ITEM Assertion OK : ActiveWorkbook.FullName und ActiveWorkbook.Path
-+ ITEM Assertion FAIL : - = ActiveWorkbook.Colors(3) set
-+ ITEM Assertion OK : - = ActiveWorkbook.ResetColors
-+ ITEM Assertion OK : - = ActiveWorkbook.Colors(3) get
-+ ITEM Assertion OK : - = Range("K22").End (xlDown)
-+ ITEM Assertion OK : - = Range("K22").End (xlUo)
-+ ITEM Assertion OK : - = Range("K22").End (xlToLeft)
-+ ITEM Assertion OK : - = Range("K22").End (xlRight)
-+ ITEM Assertion OK : - ActiveSpreadsheet.Next
-+ ITEM Assertion OK : - ActiveSpreadsheet.Next
-+ ITEM Assertion OK : - ActiveSpreadsheet.Previous
-+ ITEM Assertion OK : - ActiveSpreadsheet.Previous
-+ ITEM Assertion OK : - Range("J4:J11").AutoFilter field:=1, Criteria1:="x"
-+ ITEM Assertion OK : - Range("J4:J11").AutoFilter field:=1, Criteria1:="<>"
-+ ITEM Assertion OK : - Range("J4:J11").AutoFilter field:=1, Criteria1:="="
-+ ITEM Assertion OK : - Range("J4:J11").AutoFilter
-+ ITEM Assertion OK : - ActiveSheet.Resize.Select
-+ ITEM Assertion OK : - Application.GoTo Reference:="R8C2"
-+ ITEM Assertion FAIL : - Application.GoTo Reference:="R[8]C[2]"
-+ ITEM Assertion OK : - Application.GoTo Reference:="R8C2"
-+ ITEM Assertion OK : - Range.Group - please check visually
-+ ITEM Assertion OK : - Range.Group - please check visually
-+ ITEM Assertion OK : - Range.Ungroup- please check visually
-+ ITEM Assertion OK : - Range.Ungroup - please check visually
-+ ITEM Assertion OK : - Range.Group - please check visually
-+ ITEM Assertion OK : - Range.Group - please check visually
-+ ITEM Assertion OK : - Range.clearOutline - please check visually
-+ ITEM Assertion OK : - Range.AutoOutline - please check visually
-+ ITEM Assertion OK : - Range.AutoOutline - please check visually
-+ ITEM Assertion OK : - ActiveSheet.UsedRange.Select
-+ ITEM Assertion OK : - Range("A13").AddIndent
-+ ITEM Assertion OK : - Range("A13").IndentLevel set
-+ ITEM Assertion OK : - Range("A13").IndentLevel get
-+ ITEM Assertion OK : - Range("A13").IndentLevel get
-+ ITEM Assertion OK : - Range.Copy() and Range.PasteSpecial()
-+ ITEM Assertion OK : - Range.Copy() and Range.PasteSpecial()
-+ ITEM Assertion OK : - Range.Copy() and Range.PasteSpecial()
-+ ITEM Assertion OK : - Range.Calculate
-+ ITEM Assertion OK : Worksheet.Calculate
-+ ITEM Assertion OK : - Application.Calculate
-+ ITEM Assertion OK : Global.Calculate
-+ ITEM Assertion OK : Calculation set
-+ ITEM FAIL (RangeTest3)
-+ TEST Not succesfully completed : RangeTest3
-+END TestCalc
-+Test run finished : 17/09/2009 12:17:51
-Index: sc/source/ui/vba/testvba/Logs/VariantTest.log
-===================================================================
---- sc/source/ui/vba/testvba/Logs/VariantTest.log (revision 0)
-+++ sc/source/ui/vba/testvba/Logs/VariantTest.log (revision 276288)
-@@ -0,0 +1,47 @@
-+Test run started : 17/09/2009 12:18:06
-+----------------------------------------------------------------
-+TestAddress
-+ TEST START : TestAddress
-+ ITEM Assertion OK : test1: res = (aboo = '')
-+ ITEM Assertion OK : test 2: res = (aboo = 'fiddlesticks')
-+ ITEM Assertion OK : test 3: res = ('' = aboo)
-+ ITEM Assertion OK : test 4: res = ('fiddlesticks' = aboo )
-+ ITEM Assertion OK : test 5: res = (testString = '')
-+ ITEM Assertion OK : test 6: res = (testString = 'fiddlesticks')
-+ ITEM Assertion OK : test 7: res = ('' = testString)
-+ ITEM Assertion OK : test 8: res = ('fiddlesticks' = testString )
-+ ITEM Assertion OK : test 9: res = ( aboo < " )
-+ ITEM Assertion OK : test 10: res = ( testString < " )
-+ ITEM Assertion OK : test 11: res = ( aboo > " )
-+ ITEM Assertion OK : test 12: res = ( testString > " )
-+ ITEM Assertion OK : test 13: res = ( aboo <> '' )
-+ ITEM Assertion OK : test 14: res = ( testString <> '' )
-+ ITEM Assertion OK : test 15: res = (aboo = something/14)
-+ ITEM Assertion OK : test 16: res = something + 'string'
-+ ITEM Assertion OK : test 17: res = something & 'string'
-+ ITEM Assertion OK : test 18: res = something MOD 10 )
-+ ITEM Assertion OK : test 19: res = something AND 1 )
-+ ITEM Assertion OK : test 20: res = something AND 0 )
-+ ITEM Assertion OK : test 21: res = something OR 12)
-+ ITEM Assertion OK : test 22: res = something OR 0 )
-+ ITEM Assertion OK : test 23: res = something XOR 0 )
-+ ITEM Assertion OK : test 24: res = something XOR 1 )
-+ ITEM Assertion OK : test 25: res = something EQV 0 )
-+ ITEM Assertion OK : test 26: res = something EQV 1 )
-+ ITEM Assertion OK : test 27: res = something IMP 0 )
-+ ITEM Assertion OK : test 28: res = something IMP 1 )
-+ ITEM Assertion OK : test 29: res = something IMP 14 )
-+ ITEM Assertion OK : test 30: res = NOT something )
-+ ITEM Assertion OK : test 31: res = something + 12 )
-+ ITEM Assertion OK : test 32: res = something - 12 )
-+ ITEM Assertion OK : test 33: res = -something )
-+ ITEM Assertion OK : test 34: res = something * 12 )
-+Test Results
-+============
-+
-+Tests passed: 34
-+Tests failed: 0
-+
-+END 'TestAddress
-+ TEST OK : TestAddress
-+Test run finished : 17/09/2009 12:18:06
-Index: sc/source/ui/vba/testvba/Logs/PageBreaks.log
-===================================================================
---- sc/source/ui/vba/testvba/Logs/PageBreaks.log (revision 0)
-+++ sc/source/ui/vba/testvba/Logs/PageBreaks.log (revision 276288)
-@@ -0,0 +1,10 @@
-+Test run started : 17/09/2009 12:17:15
-+----------------------------------------------------------------
-+ TEST START : PageBreaks-Issue
-+ ITEM Assertion OK : HPageBreaks.Count is 2
-+ ITEM Assertion OK : HPageBreak.Type is -4135
-+ ITEM Assertion OK : HPageBreak.Location: Range.Row is 5
-+ ITEM Assertion OK : HPageBreak.Delete: HPageBreaks.Count is 2
-+END 'PageBreaks-Issue' Symbol
-+ TEST OK : PageBreaks-Issue
-+Test run finished : 17/09/2009 12:17:15
-Index: sc/source/ui/vba/testvba/Logs/stringplusdouble.log
-===================================================================
---- sc/source/ui/vba/testvba/Logs/stringplusdouble.log (revision 0)
-+++ sc/source/ui/vba/testvba/Logs/stringplusdouble.log (revision 276288)
-@@ -0,0 +1,62 @@
-+Test run started : 17/09/2009 12:17:40
-+BEGIN String Plus Double
-+ TEST START : double = string + double
-+The next compute raises error: s = null, d = null, r = s + d
-+ ITEM Assertion OK : s = null, d = null, r = s + d .The result is: -1
-+ ITEM Assertion OK : s = null, d = null, r = s & d .The result is: 0
-+The next compute raises error: s = null, d = 20, r = s + d
-+ ITEM Assertion OK : s = null, d = 20, r = s + d .The result is: -1
-+ ITEM Assertion OK : s = null, d = 20, r = s & d .The result is: 20
-+ ITEM Assertion OK : s = '10', d = null, r = s + d .The result is: 10
-+ ITEM Assertion OK : s = '10', d = null, r = s & d .The result is: 100
-+ ITEM Assertion OK : s = '10', d = 20, r = s + d .The result is: 30
-+ ITEM Assertion OK : s = '10', d = 20, r = s & d .The result is: 1020
-+The next compute raises error: s = 'abc', d = null, r = s + d
-+ ITEM Assertion OK : s = 'abc', d = null, r = s + d .The result is: -1
-+The next compute raises error: s = 'abc', d = null, r = s & d
-+ ITEM Assertion OK : s = 'abc', d = null, r = s & d .The result is: -1
-+The next compute raises error: s = 'abc', d = 20, r = s + d
-+ ITEM Assertion OK : s = 'abc', d = 20, r = s + d .The result is: -1
-+The next compute raises error: s = 'abc', d = 20, r = s & d
-+ ITEM Assertion OK : s = 'abc', d = 20, r = s & d .The result is: -1
-+ TEST OK : double = string + double
-+ TEST START : string = string + double
-+The next compute raises error: s = null, d = null, r = s + d
-+ ITEM Assertion OK : s = null, d = null, r = s + d .The result is: -1
-+ ITEM Assertion OK : s = null, d = null, r = s & d .The result is: 0
-+The next compute raises error: s = null, d = 20, r = s + d
-+ ITEM Assertion OK : s = null, d = 20, r = s + d .The result is: -1
-+ ITEM Assertion OK : s = null, d = 20, r = s & d .The result is: 20
-+ ITEM Assertion OK : s = '10', d = null, r = s + d .The result is: 10
-+ ITEM Assertion OK : s = '10', d = null, r = s & d .The result is: 100
-+ ITEM Assertion OK : s = '10', d = 20, r = s + d .The result is: 30
-+ ITEM Assertion OK : s = '10', d = 20, r = s & d .The result is: 1020
-+The next compute raises error: s = 'abc', d = null, r = s + d
-+ ITEM Assertion OK : s = 'abc', d = null, r = s + d .The result is: -1
-+ ITEM Assertion OK : s = 'abc', d = null, r = s & d .The result is: abc0
-+The next compute raises error: s = 'abc', d = 20, r = s + d
-+ ITEM Assertion OK : s = 'abc', d = 20, r = s + d .The result is: -1
-+ ITEM Assertion OK : s = 'abc', d = 20, r = s & d .The result is: abc20
-+ TEST OK : string = string + double
-+ TEST START : double = string + string
-+The next compute raises error: s = null, d = null, r = s + d
-+ ITEM Assertion OK : s = null, d = null, r = s + d .The result is: -1
-+The next compute raises error: s = null, d = null, r = s & d
-+ ITEM Assertion OK : s = null, d = null, r = s & d .The result is: -1
-+ ITEM Assertion OK : s = null, d = 20, r = s + d .The result is: 20
-+ ITEM Assertion OK : s = null, d = 20, r = s & d .The result is: 20
-+ ITEM Assertion OK : s = '10', d = null, r = s + d .The result is: 10
-+ ITEM Assertion OK : s = '10', d = null, r = s & d .The result is: 10
-+ ITEM Assertion OK : s = '10', d = 20, r = s + d .The result is: 1020
-+ ITEM Assertion OK : s = '10', d = 20, r = s & d .The result is: 1020
-+The next compute raises error: s = 'abc', d = null, r = s + d
-+ ITEM Assertion OK : s = 'abc', d = null, r = s + d .The result is: -1
-+The next compute raises error: s = 'abc', d = null, r = s & d
-+ ITEM Assertion OK : s = 'abc', d = null, r = s & d .The result is: -1
-+The next compute raises error: s = 'abc', d = 20, r = s + d
-+ ITEM Assertion OK : s = 'abc', d = 20, r = s + d .The result is: -1
-+The next compute raises error: s = 'abc', d = 20, r = s & d
-+ ITEM Assertion OK : s = 'abc', d = 20, r = s & d .The result is: -1
-+ TEST OK : double = string + string
-+END String Plus Double
-+Test run finished : 17/09/2009 12:17:40
-Index: sc/source/ui/vba/testvba/Logs/TestIntersection.log
-===================================================================
---- sc/source/ui/vba/testvba/Logs/TestIntersection.log (revision 0)
-+++ sc/source/ui/vba/testvba/Logs/TestIntersection.log (revision 276288)
-@@ -0,0 +1,26 @@
-+Test run started : 17/09/2009 12:18:03
-+----------------------------------------------------------------
-+TestIntersection
-+ TEST START : TestIntersection
-+ ITEM Assertion OK : test1 Application.Intersect( Range('A2:D10'), Range('C4:E6'))
-+ ITEM Assertion OK : test2 Application.Intersect( Range('A2:D10'), Range('A4:G10'))
-+ ITEM Assertion OK : test3 Application.Intersect( Range('A2:c8,d2:f8,g2:i8'), Range('A4:G10'))
-+ ITEM Assertion OK : test4 Application.Intersect( Range('A4:G10'), Range('A2:c8,d2:f8,g2:i8'))
-+ ITEM Assertion OK : test5 Application.Intersect( Range('A2:c8,d2:f8,g2:i8'), Range('g4:i10,A4:G10'))
-+ ITEM Assertion OK : test6 Application.Intersect( Range('g4:i10,A4:G10'), Range('A2:c8,d2:f8,g2:i8'))
-+ ITEM Assertion OK : test7 Application.Intersect( Range('a2:d10,b5:e10'), Range('a5:i10'))
-+ ITEM Assertion OK : test8 Application.Intersect( Range('a2:c8,d2:f8'), Range('b6:e9,a6:f9'))
-+ ITEM Assertion OK : test9 Application.Intersect( Range('a2:c8,e2:f8'), Range('b6:e9,a6:f9'))
-+ ITEM Assertion OK : test10 Application.Intersect( Range('a1:a3,c1:c3'), Range('a2:c3'))
-+ ITEM Assertion OK : test11 Application.Intersect( Range('a1:a3,b1:b3'), Range('a2:c3'))
-+ ITEM Assertion OK : test12 Application.Intersect( Range('a2:d5,b3:f7,c1:g4'), Range('b2:e6'))
-+ ITEM Assertion OK : test13 Range(" a2:d10,b5:e10,g13:j32 "), Range(" a5:i10,b6:e9 "), Range("b2:r5,f10:h19")
-+Test Results
-+============
-+
-+Tests passed: 13
-+Tests failed: 0
-+
-+END 'TestIntersection
-+ TEST OK : TestIntersection
-+Test run finished : 17/09/2009 12:18:03
-Index: sc/source/ui/vba/testvba/Logs/Window.log
-===================================================================
---- sc/source/ui/vba/testvba/Logs/Window.log (revision 0)
-+++ sc/source/ui/vba/testvba/Logs/Window.log (revision 276288)
-@@ -0,0 +1,46 @@
-+Test run started : 17/09/2009 12:18:08
-+----------------------------------------------------------------
-+ TEST START : Window-Issue
-+ ITEM Assertion OK : Window.Left is: 0 (Test only applies to maximized Window)
-+ ITEM Assertion OK : Window.Top is: 21 (Test only applies to maximized Window)
-+ ITEM Assertion OK : Window.Width is: 1280 (Test only applies to maximized Window)
-+ ITEM Assertion OK : Window.Height is: 977 (Test only applies to maximized Window)
-+ ITEM Assertion OK : Window.ScrollColumn is: 100
-+ ITEM Assertion OK : Window.ScrollColumn is: 1
-+ ITEM Assertion OK : Window.ScrollRow is: 100
-+ ITEM Assertion OK : Window.ScrollRow is: 1
-+ ITEM Assertion OK : Window.LargeScroll(Down): ScrollRow is: 151 (Test may only apply to maximized Window)
-+ ITEM Assertion OK : Window.LargeScroll(Up): ScrollRow is: 1
-+ ITEM Assertion OK : Window.LargeScroll(ToRight): ScrollColumn is: 58 (Test may only apply to maximized Window)
-+ ITEM Assertion OK : Window.LargeScroll(ToLeft): ScrollColumn is: 1
-+ ITEM Assertion OK : Window.SmallScroll(ToRight): ScrollColumn is: 4 (Test may only apply to maximized Window)
-+ ITEM Assertion OK : Window.SmallScroll(ToLeft): ScrollColumn is: 1
-+ ITEM Assertion OK : Window.DisplayWorkBookTabs is: False
-+ ITEM Assertion OK : Window.DisplayWorkBookTabs is: True
-+ ITEM Assertion OK : Window.DisplayVerticalScrollBar is: True
-+ ITEM Assertion OK : Window.DisplayVerticalScrollBar is: False
-+ ITEM Assertion OK : Window.DisplayHorizontalScrollBar is: False
-+ ITEM Assertion OK : Window.DisplayHorizontalScrollBar is: True
-+ ITEM Assertion OK : Window.DisplayHeadings is: False
-+ ITEM Assertion OK : Window.DisplayHeadings is: True
-+ ITEM Assertion OK : Window.DisplayOutline is: False
-+ ITEM Assertion OK : Window.DisplayOutline is: True
-+ ITEM Assertion OK : Window.Visible is: False
-+ ITEM Assertion OK : Window.Visible is: True
-+ ITEM Assertion OK : Window.Caption is: MyCaption
-+ ITEM Assertion OK : Pane.ScrollColumn is: 100
-+ ITEM Assertion OK : Pane.ScrollColumn is: 1
-+ ITEM Assertion OK : Pane.ScrollRow is: 100
-+ ITEM Assertion OK : Pane.ScrollRow is: 1
-+ ITEM Assertion OK : Pane.LargeScroll(Down): ScrollRow is: 151 (Test may only apply to maximized Window)
-+ ITEM Assertion OK : Pane.LargeScroll(Up): ScrollRow is: 1
-+ ITEM Assertion OK : Pane.LargeScroll(ToRight): ScrollColumn is: 58 (Test may only apply to maximized Window)
-+ ITEM Assertion OK : Pane.LargeScroll(ToLeft): ScrollColumn is: 1
-+ ITEM Assertion OK : Pane.SmallScroll(ToRight): ScrollColumn is: 4 (Test may only apply to maximized Window)
-+ ITEM Assertion OK : Pane.SmallScroll(ToLeft): ScrollColumn is: 1
-+ ITEM Assertion OK : Window Selection: $A$2:$D$5
-+ ITEM Assertion OK : ActiveSheet name of Window: Sheet1
-+ ITEM Assertion OK : Window ActiveCell: $A$1
-+END 'Window-Issue' Symbol
-+ TEST OK : Window-Issue
-+Test run finished : 17/09/2009 12:18:09
-Index: sc/source/ui/vba/testvba/Logs/partition.log
-===================================================================
---- sc/source/ui/vba/testvba/Logs/partition.log (revision 0)
-+++ sc/source/ui/vba/testvba/Logs/partition.log (revision 276288)
-@@ -0,0 +1,11 @@
-+Test run started : 17/09/2009 12:17:16
-+BEGIN Partition
-+ TEST START : Test Partition function
-+ ITEM Assertion OK : the number 20 occurs in the range:20:24
-+ ITEM Assertion OK : the number 20 occurs in the range: 20: 20
-+ ITEM Assertion OK : the number 120 occurs in the range:100:
-+ ITEM Assertion OK : the number -5 occurs in the range: : -1
-+ ITEM Assertion OK : the number 2 occurs in the range: 2: 3
-+ TEST OK : Test Partition function
-+END Partition
-+Test run finished : 17/09/2009 12:17:16
-Index: sc/source/ui/vba/testvba/Logs/datevalue.log
-===================================================================
---- sc/source/ui/vba/testvba/Logs/datevalue.log (revision 0)
-+++ sc/source/ui/vba/testvba/Logs/datevalue.log (revision 276288)
-@@ -0,0 +1,8 @@
-+Test run started : 17/09/2009 12:17:07
-+BEGIN DateValue
-+ TEST START : Test DateValue function
-+ ITEM Assertion OK : the return date is: 12/02/1969
-+ ITEM Assertion OK : the return date is: 21/01/2008
-+ TEST OK : Test DateValue function
-+END DateValue
-+Test run finished : 17/09/2009 12:17:07
-Index: sc/source/ui/vba/testvba/Logs/replace.log
-===================================================================
---- sc/source/ui/vba/testvba/Logs/replace.log (revision 0)
-+++ sc/source/ui/vba/testvba/Logs/replace.log (revision 276288)
-@@ -0,0 +1,14 @@
-+Test run started : 17/09/2009 12:17:35
-+BEGIN Replace
-+ TEST START : Test Replace function
-+ ITEM Assertion OK : common string:aefefdBc
-+ ITEM Assertion OK : expression string:aefefdef
-+ ITEM Assertion OK : binanary compare:aefefdBc
-+ ITEM Assertion OK : text compare:aefefdef
-+ ITEM Assertion OK : text compare:aefefdef
-+ ITEM Assertion OK : start = 3:cefdBc
-+ ITEM Assertion OK : count = 2: aefefdBc
-+ ITEM Assertion OK : start = 1, count = 0, not support in Unix: abcbcdBc
-+ TEST OK : Test Replace function
-+END Replace
-+Test run finished : 17/09/2009 12:17:35
-Index: sc/source/ui/vba/testvba/Logs/StrConv-test.log
-===================================================================
---- sc/source/ui/vba/testvba/Logs/StrConv-test.log (revision 0)
-+++ sc/source/ui/vba/testvba/Logs/StrConv-test.log (revision 276288)
-@@ -0,0 +1,9 @@
-+Test run started : 17/09/2009 12:17:39
-+BEGIN StrConv
-+ TEST START : Test StrConv function
-+ ITEM Assertion OK : Converts the string to uppercase characters:ABC EFG HIJ
-+ ITEM Assertion OK : Converts the string to lowercase characters:abc efg hij
-+ ITEM Assertion OK : Converts the first letter of every word in string to uppercase:Abc Efg Hij
-+ TEST OK : Test StrConv function
-+END StrConv
-+Test run finished : 17/09/2009 12:17:39
-Index: sc/source/ui/vba/testvba/Logs/Template.log
-===================================================================
---- sc/source/ui/vba/testvba/Logs/Template.log (revision 0)
-+++ sc/source/ui/vba/testvba/Logs/Template.log (revision 276288)
-@@ -0,0 +1,14 @@
-+Test run started : 17/09/2009 12:17:42
-+----------------------------------------------------------------
-+TestCaseName
-+ TEST START : TestCaseName
-+ ITEM Assertion OK : Something has been done.
-+Test Results
-+============
-+
-+Tests passed: 1
-+Tests failed: 0
-+
-+END 'TestCaseName
-+ TEST OK : TestCaseName
-+Test run finished : 17/09/2009 12:17:42
-Index: sc/source/ui/vba/testvba/Logs/dateserial.log
-===================================================================
---- sc/source/ui/vba/testvba/Logs/dateserial.log (revision 0)
-+++ sc/source/ui/vba/testvba/Logs/dateserial.log (revision 276288)
-@@ -0,0 +1,9 @@
-+Test run started : 17/09/2009 12:17:06
-+BEGIN DateSerial
-+ TEST START : Test DateSerial function
-+ ITEM Assertion OK : the return date is: 15/06/1999
-+ ITEM Assertion OK : the return date is: 15/06/1999
-+ ITEM Assertion OK : the return date is: 15/06/1999
-+ TEST OK : Test DateSerial function
-+END DateSerial
-+Test run finished : 17/09/2009 12:17:06
-Index: sc/source/ui/vba/testvba/Logs/AutoFilter.log
-===================================================================
---- sc/source/ui/vba/testvba/Logs/AutoFilter.log (revision 0)
-+++ sc/source/ui/vba/testvba/Logs/AutoFilter.log (revision 276288)
-@@ -0,0 +1,20 @@
-+Test run started : 17/09/2009 12:17:01
-+----------------------------------------------------------------
-+TestAddress
-+ TEST START : TestAddress
-+ ITEM Assertion OK : test1 'starts with' string criteria
-+ ITEM Assertion OK : test2 'not equal to' string criteria
-+ ITEM Assertion OK : test3 'ends with' string criteria
-+ ITEM Assertion OK : test4 field 'all'
-+ ITEM Assertion OK : test5 numeric '<15'
-+ ITEM Assertion OK : test6 numeric '>=15'
-+ ITEM Assertion OK : test7 numeric '<=12'
-+Test Results
-+============
-+
-+Tests passed: 7
-+Tests failed: 0
-+
-+END 'TestAddress
-+ TEST OK : TestAddress
-+Test run finished : 17/09/2009 12:17:01
-Index: sc/source/ui/vba/testvba/Logs/Ranges-2.log
-===================================================================
---- sc/source/ui/vba/testvba/Logs/Ranges-2.log (revision 0)
-+++ sc/source/ui/vba/testvba/Logs/Ranges-2.log (revision 276288)
-@@ -0,0 +1,68 @@
-+Test run started : 17/09/2009 12:17:21
-+----------------------------------------------------------------
-+ClearFormtsIssue
-+ TEST START : ClearFormtsIssue
-+ ITEM Assertion OK : Range.Font.Bold is: True
-+ ITEM Assertion OK : Range.Font.Bold is: False
-+END 'ClearFormtsIssue' Symbol
-+ TEST OK : ClearFormtsIssue
-+----------------------------------------------------------------
-+VerticalAlignment-Issue
-+ TEST START : VerticalAlignment-Issue
-+ ITEM Assertion OK : - Range.VerticalAlignment (get)
-+ ITEM Assertion OK : - Range.VerticalAlignment (set)
-+ ITEM Assertion OK : - Range.VerticalAlignment (get)
-+ ITEM Assertion OK : - Range.VerticalAlignment (get)
-+ ITEM Assertion OK : - Range.VerticalAlignment (set)
-+ ITEM Assertion OK : - Range.VerticalAlignment (get)
-+ ITEM Assertion OK : - Range.VerticalAlignment (set)
-+ ITEM Assertion OK : Range.VeritcalAlignment is Null
-+END 'VerticalAlignment-Issue' Symbol
-+ TEST OK : VerticalAlignment-Issue
-+----------------------------------------------------------------
-+HorizontalAlignment-Issue
-+ TEST START : HorizontalAlignment-Issue
-+ ITEM Assertion OK : - Range.HorizontalAlignment (get)
-+ ITEM Assertion OK : - Range.HorizontalAlignment (set)
-+ ITEM Assertion OK : - Range.HorizontalAlignment (get)
-+ ITEM Assertion OK : - Range.HorizontalAlignment (set)
-+ ITEM Assertion OK : - Range.HorizontalAlignment (get)
-+ ITEM Assertion OK : - Range.HorizontalAlignment (set)
-+ ITEM Assertion OK : - Range.HorizontalAlignment (get)
-+ ITEM Assertion OK : - Range.HorizontalAlignment (set)
-+ ITEM Assertion OK : Range.HorizontalAlignment is Null
-+END 'HorizontalAlignment-Issue' Symbol
-+ TEST OK : HorizontalAlignment-Issue
-+----------------------------------------------------------------
-+WrapText-Issue
-+ TEST START : WrapText-Issue
-+ ITEM Assertion OK : - Range.WrapText (get)
-+ ITEM Assertion OK : - Range.WrapText (get)
-+ ITEM Assertion OK : Range.WrapText is Null
-+END 'WrapText-Issue' Symbol
-+ TEST OK : WrapText-Issue
-+----------------------------------------------------------------
-+FontBorderIssues
-+ TEST START : FontBorderIssues
-+ ITEM Assertion OK : - = Borders.Color (getColor)
-+ ITEM Assertion OK : - = Font.Color (getColor)
-+END 'FontBorderIssues' Symbol
-+ TEST OK : FontBorderIssues
-+----------------------------------------------------------------
-+RangeSizeIssues
-+ TEST START : RangeSizeIssues
-+ ITEM Assertion OK : Range.Left is: 120.06225
-+ ITEM Assertion OK : Range.Top is: 93.29985
-+ ITEM Assertion OK : Range.Width is: 228.3
-+ ITEM Assertion OK : Range.Height is: 271.5
-+END 'RangeSizeIssues' Symbol
-+ TEST OK : RangeSizeIssues
-+----------------------------------------------------------------
-+ApplicationIssues
-+ TEST START : ApplicationIssues
-+ ITEM Assertion OK : Range.Address is: $E$8:$G$13,$G$13:$K$19
-+ ITEM Assertion OK : Range.Address is: $E$8:$G$13,$G$13:$K$19
-+ ITEM Assertion OK : Application.ActiveSheet.Name: Sheet1
-+END 'ApplicationIssues' Symbol
-+ TEST OK : ApplicationIssues
-+Test run finished : 17/09/2009 12:17:22
-Index: sc/source/ui/vba/testvba/Logs/TestCalc_Rangetest.log
-===================================================================
---- sc/source/ui/vba/testvba/Logs/TestCalc_Rangetest.log (revision 0)
-+++ sc/source/ui/vba/testvba/Logs/TestCalc_Rangetest.log (revision 276288)
-@@ -0,0 +1,60 @@
-+Test run started : 17/09/2009 12:17:52
-+BEGIN TestCalc
-+ TEST START : RangeTest2
-+ ITEM Assertion OK : - Range("D15").Row
-+ ITEM Assertion OK : - WorkSheet("D15").Range.Row
-+ ITEM Assertion OK : - Range("D15").Column
-+ ITEM Assertion OK : - Worksheet.Range("D15").Column
-+ ITEM Assertion OK : - Range("D1").EntireRow.Valuer
-+ ITEM Assertion OK : - Range("D1").EntireRow.Valuer
-+ ITEM Assertion OK : - Range("D1").EntireRow.Columns.Count
-+ ITEM Assertion OK : - Range("D1").EntireColumn.Rows.Count
-+ ITEM Assertion OK : - Range("D15").ClearContent
-+ ITEM Assertion OK : - Range("M1:N2").Rows.Hidden (set)
-+ ITEM Assertion OK : - Range("M1:N2").Rows.Hidden (get)
-+ ITEM Assertion OK : - Range("M1:N2").Rows(1).Hidden (set)
-+ ITEM Assertion OK : - Range("M1:N2").Rows(1).Hidden (get)
-+ ITEM Assertion OK : - Range("M1:N2").Columns.Hidden (set)
-+ ITEM Assertion OK : - Range("M1:N2").Columns.Hidden (get)
-+ ITEM Assertion OK : - Range("M1:N2").Columns(1).Hidden (set)
-+ ITEM Assertion OK : - Range("M1:N2").Columns(1).Hidden (get)
-+ ITEM Assertion OK : - Range("B38").Orientation (get)
-+ ITEM Assertion OK : - Range("B38").Orientation (set)
-+ ITEM Assertion OK : - Range("B38").Orientation (set = xlDownward)
-+ ITEM Assertion OK : - Range("B38").Orientation (set)
-+ ITEM Assertion OK : - Range("B38").Orientation (set = xlUpward)
-+ ITEM Assertion OK : - Range("B38").Orientation (set)
-+ ITEM Assertion OK : - Range("B38").Orientation (set = xlVertical)
-+ ITEM Assertion OK : - Range("B38").Orientation (set)
-+ ITEM Assertion OK : - Range("B38").Orientation (set = xlVertical)
-+ ITEM Assertion OK : - Range("B39").WrapText (get)
-+ ITEM Assertion OK : - Range("B39").WrapText (set)
-+ ITEM Assertion OK : - Range("B39").WrapText (set)
-+ ITEM Assertion OK : - Range("E39").MergeCells (get)
-+ ITEM Assertion OK : - Range("F39").MergeCells (get)
-+ ITEM Assertion OK : - Range("E39").MergeCells (set)
-+ ITEM Assertion FAIL : - Range("F39").MergeCells (set)
-+ ITEM Assertion OK : - Range("E39").MergeCells (set)
-+ ITEM Assertion OK : - Range("F39").MergeCells (set)
-+ ITEM Assertion OK : - Range("C41:C42").Replace MatchCase:=True
-+ ITEM Assertion OK : - Range("C41:C42").Replace MatchCase:=True
-+ ITEM Assertion OK : - Range("D41:D42").Replace MatchCase:=False
-+ ITEM Assertion OK : - Range("B39").VerticalAlignment (get)
-+ ITEM Assertion OK : - Range("B39").VerticalAlignment (set)
-+ ITEM Assertion OK : - Range("B39").VerticalAlignment (get)
-+ ITEM Assertion OK : - Range("B39").VerticalAlignment (get)
-+ ITEM Assertion OK : - Range("B39").VerticalAlignment (set)
-+ ITEM Assertion OK : - Range("B39").VerticalAlignment (get)
-+ ITEM Assertion OK : - Range("B39").VerticalAlignment (set)
-+ ITEM Assertion OK : - Range("B39").HorizontalAlignment (get)
-+ ITEM Assertion OK : - Range("B39").HorizontalAlignment (set)
-+ ITEM Assertion OK : - Range("B39").HorizontalAlignment (get)
-+ ITEM Assertion OK : - Range("B39").HorizontalAlignment (set)
-+ ITEM Assertion OK : - Range("B39").HorizontalAlignment (get)
-+ ITEM Assertion OK : - Range("B39").HorizontalAlignment (set)
-+ ITEM Assertion OK : - Range("B39").HorizontalAlignment (get)
-+ ITEM Assertion OK : - Range("B39").HorizontalAlignment (set)
-+ ITEM FAIL (RangeTest2)
-+ TEST Not succesfully completed : RangeTest2
-+END TestCalc
-+Test run finished : 17/09/2009 12:18:02
-Index: sc/source/ui/vba/testvba/Logs/Ranges.log
-===================================================================
---- sc/source/ui/vba/testvba/Logs/Ranges.log (revision 0)
-+++ sc/source/ui/vba/testvba/Logs/Ranges.log (revision 276288)
-@@ -0,0 +1,280 @@
-+Test run started : 17/09/2009 12:17:26
-+----------------------------------------------------------------
-+ApplicationMethods
-+ TEST START : ApplicationMethods
-+ ITEM Assertion OK : Name of Workbook is: Ranges.xls
-+ ITEM Assertion OK : Address of Application.Columns is: $A:$A
-+ ITEM Assertion OK : Address of Application.Rows is: $1:$1
-+ ITEM Assertion OK : Address of Application.Range is: $1:$1,$5:$7
-+ ITEM Assertion OK : Please check manually: DefaultFilePath is: /data4/home/npower/Documents
-+ ITEM Assertion OK : Please check manually: Library Path is: /media/disk/Openoffice-BUILDS/UBERCWS/IBM_NOVELL_TESTBUILD/opt/UserInstallation/user/basic
-+ ITEM Assertion OK : Please check manually: Template Path is: /media/disk/Openoffice-BUILDS/UBERCWS/IBM_NOVELL_TESTBUILD/opt/UserInstallation/user/template
-+ ITEM Assertion OK : FileSeparator is /
-+ ITEM Assertion OK : Name of ActiveWorkbook is: Ranges.xls
-+END 'ApplicationMethods' Symbol
-+ TEST OK : ApplicationMethods
-+----------------------------------------------------------------
-+Insert-Issue
-+ TEST START : Insert-Issue
-+ ITEM Assertion OK : Insert with xlShiftToRight: 10
-+END 'Insert-Issue' Symbol
-+ TEST OK : Insert-Issue
-+----------------------------------------------------------------
-+MergeCells-Issue
-+ TEST START : MergeCells-Issue
-+ ITEM Assertion OK : Range.MergeCells is True
-+ ITEM Assertion FAIL : MergeCells is null: False
-+ ITEM Assertion OK : RowCount after Merge: 13
-+ ITEM Assertion OK : Range.MergeCells is False
-+ ITEM Assertion OK : MergeCells is null: False
-+ ITEM Assertion FAIL : MergeCells of Second Area is null : False
-+ ITEM Assertion FAIL : MergeCells of Ranges is Null: False
-+ ITEM Assertion OK : RowCount after Merge: 7
-+ ITEM Assertion OK : Range.MergeCells is False
-+ ITEM Assertion OK : MergeCells is null: False
-+ ITEM Assertion OK : RowCount after Merge: 7
-+END 'MergeCells-Issue' Symbol
-+ TEST OK : MergeCells-Issue
-+----------------------------------------------------------------
-+Areas-Issue
-+ TEST START : Areas-Issue
-+ ITEM Assertion OK : Range Areas Count is2
-+ ITEM Assertion OK : First Range Address is: $E$8:$G$13
-+ ITEM Assertion OK : First Row is: 8
-+ ITEM Assertion OK : First Column is: 5
-+ ITEM Assertion OK : EntireRow Address is: $8:$13,$13:$19
-+ ITEM Assertion OK : EntireColumn Address is: $E:$G,$G:$K
-+ ITEM Assertion OK : Range Count:53
-+END 'Areas-Issue' Symbol
-+ TEST OK : Areas-Issue
-+----------------------------------------------------------------
-+Fill-Methods-Issue
-+ TEST START : Fill-Methods-Issue
-+ ITEM Assertion OK : Range Value after FillDown: MyFillValue
-+ ITEM Assertion OK : Range Value after FillDown: MyFillValue
-+ ITEM Assertion OK : Range Value after FillDown: MyRightFillValue
-+ ITEM Assertion OK : Range Value after FillDown: MyBottomFillValue
-+END 'Fill-Methods-Issue' Symbol
-+ TEST OK : Fill-Methods-Issue
-+----------------------------------------------------------------
-+Range/Item-Method-Issue
-+ TEST START : Range/Item-Method-Issue
-+ ITEM Assertion OK : Range of multiple columns is: $A:$A,$C:$C
-+ ITEM Assertion OK : Range of multiple rows is: $1:$1,$5:$7
-+ ITEM Assertion OK : Range of several columns is: $C:$E,$D:$D
-+ ITEM Assertion OK : Range of several rows is: $5:$8,$6:$10
-+ ITEM Assertion OK : Range of several single cells is: $C$5,$E$8
-+ ITEM Assertion OK : Range of several named ranges is: $L$1:$M$6,$E$8:$G$13,$G$13:$K$19
-+ ITEM Assertion OK : Range of a single Item Cell is: $E$21
-+ ITEM Assertion OK : Range of a single Item Cell is: $F$21
-+ ITEM Assertion OK : Range of a single Item Cell is: $F$10
-+END 'Range/Item-Method-Issue' Symbol
-+ TEST OK : Range/Item-Method-Issue
-+----------------------------------------------------------------
-+R1C1-Formulas-Issue
-+ TEST START : R1C1-Formulas-Issue
-+ ITEM Assertion OK : R1C1 Range.Formula is: =IF(OR(R[-2]C[1]=0,RC[2]="YES"),"")
-+ ITEM Assertion OK : Range.Formula is: =IF(OR(J8=0,K10="YES"),"")
-+END 'R1C1-Formulas-Issue' Symbol
-+ TEST OK : R1C1-Formulas-Issue
-+----------------------------------------------------------------
-+Verify_Delete
-+ TEST START : Verify_Delete
-+ ITEM Assertion OK : Ranges are intersecting: $G$13
-+ ITEM Assertion OK : Delete with Default: $AJ$4
-+ ITEM Assertion OK : Delete with ShifttoLeft: $AJ$4
-+ ITEM Assertion OK : Delete with ShiftUp: $M$22
-+END 'Verify_Delete' Symbol
-+ TEST OK : Verify_Delete
-+----------------------------------------------------------------
-+Value-Issue
-+ TEST START : Value-Issue
-+ ITEM Assertion OK : Value of Range is: 12.3
-+ ITEM Assertion OK : Text of Range is: 12.3
-+ ITEM Assertion OK : Range has Formula: False
-+ ITEM Assertion OK : Cell has Formula: False
-+ ITEM Assertion FAIL : Text of Range is null: False
-+ ITEM Assertion OK : Range has Formula: True
-+ ITEM Assertion OK : Cell has Formula: True
-+ ITEM Assertion OK : Value of Cell is: 12
-+ ITEM Assertion OK : Application.Calculation is : -4135
-+ ITEM Assertion OK : Calculation is automated: True
-+ ITEM Assertion OK : Range has Formula: True
-+ ITEM Assertion OK : Value of Cell is: 16
-+ ITEM Assertion OK : Text of Cell is: 16
-+ ITEM Assertion OK : Text of Cell is: 16
-+ ITEM Assertion OK : Range has Formula after 'ClearContents: False
-+ ITEM Assertion OK : Text of Cell is:
-+ ITEM Assertion OK : Text of Cell is:
-+END 'Value-Issue' Symbol
-+ TEST OK : Value-Issue
-+----------------------------------------------------------------
-+AutoFit issue
-+ TEST START : AutoFit issue
-+ ITEM Assertion OK : Columns.AutoFit: CurrentWidth is 679
-+ ITEM Assertion OK : Rows.AutoFit: CurrentHeight is 546
-+END 'AutoFit issue' Symbol
-+ TEST OK : AutoFit issue
-+----------------------------------------------------------------
-+Selections
-+ TEST START : Selections
-+ ITEM Assertion OK : ActiveCell is : $E$8
-+ ITEM Assertion OK : Active Cell is : $E$8
-+ ITEM Assertion OK : Number of Cells in Range: 52
-+ ITEM Assertion OK : Number of Cells in Range: 52
-+ ITEM Assertion OK : Number of Cells in Range: 52
-+END 'Selections' Symbol
-+ TEST OK : Selections
-+----------------------------------------------------------------
-+Offset-Resize
-+ TEST START : Offset-Resize
-+ ITEM Assertion OK : Offset is : $G$10:$I$15,$I$15:$M$21
-+ ITEM Assertion OK : Offset is : $G$7:$I$12,$I$12:$M$18
-+ ITEM Assertion OK : Resized Range is : $A$20:$D$23
-+END 'Offset-Resize' Symbol
-+ TEST OK : Offset-Resize
-+----------------------------------------------------------------
-+Ranges-Address
-+ TEST START : Ranges-Address
-+ ITEM Assertion OK : Range Address is: $E$8:$G$13,$G$13:$K$19
-+ ITEM Assertion OK : Range Address is: $E8:$G13,$G13:$K19
-+ ITEM Assertion OK : Range Address is: E$8:G$13,G$13:K$19
-+ ITEM Assertion OK : Range Address is: R8C5:R13C7,R13C7:R19C11
-+ ITEM Assertion FAIL : Range Address is: R8C5:R13C7,R13C7:R19C11
-+ ITEM Assertion OK : Range Address is: R8C5:R13C7,R13C7:R19C11
-+ ITEM Assertion OK : Range Address is: R[6]C[3]:R[11]C[5],R[11]C[5]:R[17]C[9]
-+ ITEM Assertion OK : RangeAddress is [Ranges.xls]Sheet1!$E$8:$G$13,$G$13:$K$19
-+END 'Ranges-Address' Symbol
-+ TEST OK : Ranges-Address
-+----------------------------------------------------------------
-+Range-Address
-+ TEST START : Range-Address
-+ ITEM Assertion OK : Range Address is: $E$8:$G$13
-+ ITEM Assertion OK : Range Address is: $E8:$G13
-+ ITEM Assertion OK : Range Address is: E$8:G$13
-+ ITEM Assertion OK : Range Address is: R8C5:R13C7
-+ ITEM Assertion FAIL : Range Address is: R8C5:R13C7
-+ ITEM Assertion OK : Range Address is: R8C5:R13C7
-+ ITEM Assertion OK : Range Address is: R[6]C[3]:R[11]C[5]
-+ ITEM Assertion OK : RangeAddress is [Ranges.xls]Sheet1!$E$8:$G$13
-+END 'Range-Address' Symbol
-+ TEST OK : Range-Address
-+----------------------------------------------------------------
-+Column-Address
-+ TEST START : Column-Address
-+ ITEM Assertion OK : Range Address is: $F$8:$F$13
-+ ITEM Assertion OK : Range Address is: $F8:$F13
-+ ITEM Assertion OK : Range Address is: F$8:F$13
-+ ITEM Assertion OK : Range Address is: R8C6:R13C6
-+ ITEM Assertion FAIL : Range Address is: R8C6:R13C6
-+ ITEM Assertion OK : Range Address is: R8C6:R13C6
-+ ITEM Assertion OK : Range Address is: R[6]C[4]:R[11]C[4]
-+ ITEM Assertion OK : RangeAddress is [Ranges.xls]Sheet1!$F$8:$F$13
-+END 'Column-Address' Symbol
-+ TEST OK : Column-Address
-+----------------------------------------------------------------
-+Row-Address
-+ TEST START : Row-Address
-+ ITEM Assertion OK : Range Address is: $E$9:$G$9
-+ ITEM Assertion OK : Range Address is: $E9:$G9
-+ ITEM Assertion OK : Range Address is: E$9:G$9
-+ ITEM Assertion OK : Range Address is: R9C5:R9C7
-+ ITEM Assertion FAIL : Range Address is: R9C5:R9C7
-+ ITEM Assertion OK : Range Address is: R9C5:R9C7
-+ ITEM Assertion OK : Range Address is: R[7]C[3]:R[7]C[5]
-+ ITEM Assertion OK : RangeAddress is [Ranges.xls]Sheet1!$E$9:$G$9
-+END 'Row-Address' Symbol
-+ TEST OK : Row-Address
-+----------------------------------------------------------------
-+SingleCell-Address
-+ TEST START : SingleCell-Address
-+ ITEM Assertion OK : Range Address is: $F$9
-+ ITEM Assertion OK : Range Address is: $F9
-+ ITEM Assertion OK : Range Address is: F$9
-+ ITEM Assertion OK : Range Address is: R9C6
-+ ITEM Assertion FAIL : Range Address is: R9C6
-+ ITEM Assertion OK : Range Address is: R9C6
-+ ITEM Assertion OK : Range Address is: R[7]C[4]
-+ ITEM Assertion OK : RangeAddress is [Ranges.xls]Sheet1!$F$9
-+END 'SingleCell-Address' Symbol
-+ TEST OK : SingleCell-Address
-+----------------------------------------------------------------
-+Heights and Widths
-+ TEST START : Heights and Widths
-+ ITEM Assertion OK : Range RowHeight is 40
-+ ITEM Assertion OK : Range ColumnWidth is 50
-+ ITEM Assertion OK : Range Height is 240
-+ ITEM Assertion OK : Range Width is 787.5
-+ ITEM Assertion OK : Range RowHeight is 50
-+ ITEM Assertion OK : Range ColumnWidth is 50
-+ ITEM Assertion OK : Range Height is 300
-+ ITEM Assertion OK : Range Width is 787.5
-+ ITEM Assertion OK : RowHeight is null: True
-+ ITEM Assertion OK : ColumnWidth is null: True
-+END 'Heights and Widths' Symbol
-+ TEST OK : Heights and Widths
-+----------------------------------------------------------------
-+RangeRowColumn-Issue
-+ TEST START : RangeRowColumn-Issue
-+ ITEM Assertion OK : Row is: 8
-+ ITEM Assertion OK : Column is: 5
-+ ITEM Assertion OK : EntireRow.Columns.Count = 1024
-+ ITEM Assertion OK : EntireColumn.Rows.Count = 131072
-+END 'RangeRowColumn-Issue' Symbol
-+ TEST OK : RangeRowColumn-Issue
-+----------------------------------------------------------------
-+Replace-Issue
-+ TEST START : Replace-Issue
-+ ITEM Assertion OK : Value after Replace: YourValue
-+ ITEM Assertion OK : Value after Replace: YourValue
-+ ITEM Assertion OK : Value after Replace: ReplaceValue
-+ ITEM Assertion OK : Value after Replace: New ReplaceValue
-+ ITEM Assertion OK : Value after Replace: New ReplaceValue
-+ ITEM Assertion OK : Value after Replace: New Replace
-+ ITEM Assertion OK : Value after Replace:
-+END 'Replace-Issue' Symbol
-+ TEST OK : Replace-Issue
-+----------------------------------------------------------------
-+Hidden-Issue
-+ TEST START : Hidden-Issue
-+ ITEM Assertion OK : - Range.Rows.Hidden (set)
-+ ITEM Assertion OK : - Range.Rows.Hidden (get)
-+ ITEM Assertion OK : - Range.Rows.Item(1).Hidden (set)
-+ ITEM Assertion OK : - Range.Rows.Item(1).Hidden (get)
-+ ITEM Assertion OK : - Range.Columns.Hidden (set)
-+ ITEM Assertion OK : - Range.Columns.Hidden (get)
-+ ITEM Assertion OK : - Range.Columns.Item(1).Hidden (set)
-+ ITEM Assertion OK : - Range.Columns.Item(1).Hidden (get)
-+END 'Hidden-Issue' Symbol
-+ TEST OK : Hidden-Issue
-+----------------------------------------------------------------
-+End issue
-+ TEST START : End issue
-+ ITEM Assertion OK : - = $E$48
-+ ITEM Assertion OK : - = $E$1
-+ ITEM Assertion OK : - = $E$3
-+ ITEM Assertion OK : - = $A$8
-+ ITEM Assertion OK : - = $B$8
-+ ITEM Assertion OK : - = $AMJ$8
-+ ITEM Assertion OK : - = $Z$8
-+END 'End issue' Symbol
-+ TEST OK : End issue
-+----------------------------------------------------------------
-+Outline issue
-+ TEST START : Outline issue
-+ ITEM Assertion OK : - Range.clearOutline - please check visually
-+ ITEM Assertion OK : - Range.AutoOutline - please check visually
-+ ITEM Assertion OK : - Range.AutoOutline - please check visually
-+END 'Outline issue' Symbol
-+ TEST OK : Outline issue
-+----------------------------------------------------------------
-+Validation
-+ TEST START : Validation
-+ ITEM Assertion OK : Validation Input Message is : Attention!
-+ ITEM Assertion OK : Validation Input Message is : Enter an integer from five to ten
-+ ITEM Assertion OK : Validation Error Title is : You must enter a number from five to ten
-+ ITEM Assertion OK : Validation Error Message is : An Error occured
-+ ITEM Assertion OK : Validation Error Title is : Microsoft Excel
-+END 'Validation' Symbol
-+ TEST OK : Validation
-+Test run finished : 17/09/2009 12:17:34
-Index: sc/source/ui/vba/testvba/Logs/Ranges-3.log
-===================================================================
---- sc/source/ui/vba/testvba/Logs/Ranges-3.log (revision 0)
-+++ sc/source/ui/vba/testvba/Logs/Ranges-3.log (revision 276288)
-@@ -0,0 +1,8 @@
-+Test run started : 17/09/2009 12:17:24
-+----------------------------------------------------------------
-+MyGoalseek-Issue
-+ TEST START : MyGoalseek-Issue
-+ ITEM Assertion OK : Variable Range value: 15
-+END 'MyGoalseek-Issue' Symbol
-+ TEST OK : MyGoalseek-Issue
-+Test run finished : 17/09/2009 12:17:24
-Index: sc/source/ui/vba/testvba/Logs/Shapes.log
-===================================================================
---- sc/source/ui/vba/testvba/Logs/Shapes.log (revision 0)
-+++ sc/source/ui/vba/testvba/Logs/Shapes.log (revision 276288)
-@@ -0,0 +1,77 @@
-+Test run started : 17/09/2009 12:17:37
-+BEGIN Shapes_Collection_Behaviour
-+ TEST START : Shapes_Collection_Behaviour
-+ ITEM Assertion OK : Name of indexed shape should be 'Sheet2Shape1'
-+ ITEM Assertion OK : Name of indexed shape should be 'Sheet2Shape2'
-+ TEST Success. : Shapes_Collection_Behaviour
-+END Shapes_Collection_Behaviour
-+BEGIN Shapes_Select_Item
-+ TEST START : Shapes_Select_Item
-+ ITEM Assertion OK : Correctly selected shape through Range
-+ ITEM Assertion OK : Correctly selected shape through Item
-+ ITEM Assertion OK : Needs to be visually checked. Is there a line on the document?
-+ ITEM Assertion OK : Needs to be visually checked. Are All Shapes Selected?
-+ TEST Success. : Shapes_Select_Item
-+END Shapes_Select_Item
-+BEGIN Shapes_Fill
-+ TEST START : Shapes_Fill
-+ ITEM Assertion OK : correctly set visibility of shape fill
-+ ITEM Assertion OK : correctly set transparency of shape line
-+ ITEM Assertion OK : correctly set forecolor of shape fill
-+ ITEM Assertion FAIL : correctly set backcolor of shape fill
-+ ITEM Assertion OK : the success of the TwoColorGradient method needs to be verified visually!
-+ ITEM Assertion OK : correctly set forecolor of shape fill
-+ ITEM Assertion FAIL : correctly set forecolor of shape fill
-+ TEST Success. : Shapes_Fill
-+END Shapes_Fill
-+BEGIN Shapes_Line
-+ TEST START : Shapes_Line
-+ ITEM Assertion FAIL : correctly set weight of shape line
-+ ITEM Assertion OK : correctly set visibility of shape line
-+ ITEM Assertion OK : correctly set transparency of shape line
-+ ITEM Assertion OK : correctly set dash style of shape line
-+ ITEM Assertion OK : correctly set dash style of shape line
-+ ITEM Assertion OK : correctly set forecolor of shape line
-+ ITEM Assertion FAIL : correctly set backcolor of shape line
-+ TEST Success. : Shapes_Line
-+END Shapes_Line
-+BEGIN Shapes_TextFrame
-+ TEST START : Shapes_TextFrame
-+ ITEM Assertion OK : correctly set Autosize of Shape TextFrame
-+ TEST Success. : Shapes_TextFrame
-+END Shapes_TextFrame
-+BEGIN Shapes_SimpleGeometry
-+ TEST START : Shapes_SimpleGeometery
-+ ITEM Assertion OK : shape height should be 46.7023593888278 and got 46.6866112323395
-+ ITEM Assertion OK : shape width should be 101.496056724658 and got 101.48030856817
-+ ITEM Assertion OK : shape left should be 68.5574761223637 and got 68.5417279658754
-+ ITEM Assertion OK : shape top should be 41.6850368702339 and got 41.6692887137456
-+ ITEM Assertion OK : shape rotation should be 0 and got 0
-+ ITEM Assertion OK : shape rotation should be 25 and got 25
-+ ITEM Assertion OK : shape incrementrotation should be 50 and got 50
-+ ITEM Assertion OK : shape incrementleft should be 70.7968460600412 and got 70.7810979035529
-+ ITEM Assertion OK : shape incrementtop should be 90.8944825893239 and got 90.8787344328356
-+ TEST Success. : Shapes_SimpleGeometery
-+END Shapes_SimpleGeometry
-+BEGIN Shapes_Range
-+ TEST START : Shapes_Range
-+ ITEM Assertion OK : expected Sheets(2).Shapes.Range(1) to contain 1 element, it contains 1
-+ ITEM Assertion OK : expected Sheets(2).Shapes.Range(1) to return Sheet2Shape1 got Sheet2Shape1
-+ ITEM Assertion OK : expected Sheets(2).Shapes.Range(Sheet2Shape3) to contain 1 element, it contains 1
-+ ITEM Assertion OK : expected Sheets(2).Shapes.Range(Sheet2Shape3) to return Sheet2Shape3 got Sheet2Shape3
-+ ITEM Assertion OK : expected Sheets(2).Shapes.Range(Array(3, 1) to contain 2 elements, it contains 2
-+ ITEM Assertion OK : expected Sheets(2).Shapes.Range(Array(3, 1) to return concated element/shape names Sheet2Shape3Sheet2Shape1 and got Sheet2Shape3Sheet2Shape1
-+ ITEM Assertion OK : expected Sheets(2).Shapes.Range(Array('Sheet2Shape3', 1, 'Sheet2Shape2')) to contain 3 elements, it contains 3
-+ ITEM Assertion OK : expected Sheets(2).Shapes.Range(Array('Sheet2Shape3', 1, 'Sheet2Shape2')) to return concated element/shape names Sheet2Shape3Sheet2Shape1Sheet2Shape2 and got Sheet2Shape3Sheet2Shape1Sheet2Shape2
-+ TEST Success. : Shapes_Range
-+END Shapes_Range
-+BEGIN Shapes_ShapeRange
-+ TEST START : Shapes_ShapeRange
-+ ITEM Assertion OK : ShapeRange.IncrementLeft shp1.left should be 90.7810979035529 and got 90.7653486132064
-+ ITEM Assertion OK : ShapeRange.IncrementLeft shp2.left should be 240.02518299054 and got 240.009433700193
-+ ITEM Assertion OK : ShapeRange.IncrementTop shp1.Top should be 110.878734432836 and got 110.862985142489
-+ ITEM Assertion OK : ShapeRange.IncrementTop shp2.Top should be 64.6740129339204 and got 64.6582636435739
-+ ITEM Assertion OK : ShapeRange.IncrementRotation shp1.Rotation should be 70 and got 70
-+ ITEM Assertion OK : ShapeRange.IncrementRotation shp2.Rotation should be 20 and got 20
-+END Shapes_ShapeRange
-+Test run finished : 17/09/2009 12:17:37
-Index: sc/source/ui/vba/testvba/Logs/TestAddress.log
-===================================================================
---- sc/source/ui/vba/testvba/Logs/TestAddress.log (revision 0)
-+++ sc/source/ui/vba/testvba/Logs/TestAddress.log (revision 276288)
-@@ -0,0 +1,67 @@
-+Test run started : 17/09/2009 12:17:43
-+----------------------------------------------------------------
-+TestAddress
-+ TEST START : TestAddress
-+ ITEM Assertion OK : test1 Range('e3:f3') A1 style addressing
-+ ITEM Assertion OK : test2 Range('e3:f3') R1C1 style addressing
-+ ITEM Assertion OK : test3 Range ('e:f') A1 style addressing
-+ ITEM Assertion OK : test4 Range ('e:f') R1C1 style addressing
-+ ITEM Assertion OK : test5 Columns A1 style addressing
-+ ITEM Assertion OK : test6 Columns R1C1 style addressing
-+ ITEM Assertion OK : test7 Columns(3) A1 style addressing
-+ ITEM Assertion OK : test8 Columns(3) R1C1 style addressing
-+ ITEM Assertion OK : test9 Columns('e') A1 style addressing
-+ ITEM Assertion OK : test10 Columns('e') R1C1 style addressing
-+ ITEM Assertion OK : test11 Columns('b:d') A1 style addressing
-+ ITEM Assertion OK : test12 Columns('b:d') R1C1 style addressing
-+ ITEM Assertion OK : test13 Range('c1:g10').Columns A1 style addressing
-+ ITEM Assertion OK : test14 Range('c1:g10').Columns R1C1 style addressing
-+ ITEM Assertion OK : test15 Range('c1:g10').Columns(1) A1 style addressing
-+ ITEM Assertion OK : test16 Range('c1:g10').Columns(1) R1C1 style addressing
-+ ITEM Assertion OK : test17 Range('c1:g10').Columns('a') A1 style addressing
-+ ITEM Assertion OK : test18 Range('c1:g10').Columns('a') R1C1 style addressing
-+ ITEM Assertion OK : test19 Range('c1:g10').Columns('c') A1 style addressing
-+ ITEM Assertion OK : test20 Range('c1:g10').Columns('c') R1C1 style addressing
-+ ITEM Assertion OK : test21 Range('c1:g10').Columns('x:z') A1 style addressing
-+ ITEM Assertion OK : test22 Range('c1:g10').Columns('x:z') R1C1 style addressing
-+ ITEM Assertion OK : test23 Range('c1:g10').Columns(30) A1 style addressing
-+ ITEM Assertion OK : test24 Range('c1:g10').Columns(30) R1C1 style addressing
-+ ITEM Assertion OK : test25 Worksheets('Sheet2').Cells(1, 1) A1 style addressing
-+ ITEM Assertion OK : test26 Worksheets('Sheet2').Cells(1, 1) A1 style addressing, RowAddressAbsolute is false
-+ ITEM Assertion OK : test27 Worksheets('Sheet2').Cells(1, 1) A1 style addressing, ColAddressAbsolute is false
-+ ITEM Assertion OK : test28 Worksheets('Sheet2').Cells(1, 1) R1C1 style addressing
-+ ITEM Assertion OK : test29 Worksheets('Sheet2').Range('A1:E5').EntireColumn A1 style addressing
-+ ITEM Assertion OK : test30 Worksheets('Sheet2').Range('A1').EntireColumn A1 style addressing
-+ ITEM Assertion OK : test31 Worksheets('Sheet2').Range('A1:E5').EntireRow A1 style addressing
-+ ITEM Assertion OK : test32 Worksheets('Sheet2').Range('A1') A1 style addressing
-+ ITEM Assertion OK : test33 Worksheets('Sheet2').Range('IV65536').EntireRow A1 style addressing
-+ ITEM Assertion OK : test34 Worksheets('Sheet2').Range('IU2:IV65536') A1 style addressing
-+ ITEM Assertion OK : test35 Range('c1:g10').Columns('x:z') R1C1 style addressing
-+ ITEM Assertion OK : test36 Worksheets('Sheet2').Range('A1') A1 style addressing
-+ ITEM Assertion OK : test37 Worksheets('Sheet2').Range('A1:E5').EntireColumn A1 style addressing
-+ ITEM Assertion OK : test38 Worksheets('Sheet2').Range('10:12') A1 style addressing
-+ ITEM Assertion OK : test39 Worksheets('Sheet2').Range('10:12') R1C1 style addressing
-+ ITEM Assertion OK : test40 Range('Sheet3!A1:B4') A1 style addressing
-+ ITEM Assertion OK : test41 Range('Sheet3!A1,B1,D4:F20') A1 style addressing
-+ ITEM Assertion OK : test42 Range('g20:h40').Columns('c:c')
-+ ITEM Assertion OK : test43 Range('g20:h40').Columns('c:f')
-+ ITEM Assertion OK : test44 Range('g20:h40').Columns(-1)
-+ ITEM Assertion OK : test45 Range('c4:g10').Rows(-1)
-+ ITEM Assertion OK : test46 Range('a2:b4').Rows('1:1')
-+ ITEM Assertion OK : test47 Range('a2:b4').Rows('1:2')
-+ ITEM Assertion OK : test48 Range('a2:b4').Rows('2:2')
-+ ITEM Assertion OK : test49 Range('a2:b4').Rows('2:3')
-+ ITEM Assertion OK : test50 Range(' A2:B4 ')
-+ ITEM Assertion OK : test51 Range('A 2:B 4')
-+ ITEM Assertion OK : test52 Range('A2 : B4 ')
-+ ITEM Assertion OK : test53 Range('Sheet1 !A2 : B4 ')
-+ ITEM Assertion OK : test54 Range('Sheet1! A2 : B4 ')
-+Test Results
-+============
-+
-+Tests passed: 54
-+Tests failed: 0
-+
-+END 'TestAddress
-+ TEST OK : TestAddress
-+Test run finished : 17/09/2009 12:17:43
-Index: sc/source/ui/vba/testvba/Logs/TestUnion.log
-===================================================================
---- sc/source/ui/vba/testvba/Logs/TestUnion.log (revision 0)
-+++ sc/source/ui/vba/testvba/Logs/TestUnion.log (revision 276288)
-@@ -0,0 +1,17 @@
-+Test run started : 17/09/2009 12:18:05
-+----------------------------------------------------------------
-+TestUnion
-+ TEST START : TestUnion
-+ ITEM Assertion OK : test1Application.Range('A2:D10'), Range('C4:E6')
-+ ITEM Assertion OK : test2Application.Range('A2:D5,a3:d4'), Range('A4:G10')
-+ ITEM Assertion OK : test3Application.Range('A4:G10,A1:B6'), Range('A2:D5,A3:D4')
-+ ITEM Assertion OK : test4Application.Range('A5:D10'), Range('B5:E10')
-+Test Results
-+============
-+
-+Tests passed: 4
-+Tests failed: 0
-+
-+END 'TestUnion
-+ TEST OK : TestUnion
-+Test run finished : 17/09/2009 12:18:05
-Index: sc/source/ui/vba/testvba/Logs/format.log
-===================================================================
---- sc/source/ui/vba/testvba/Logs/format.log (revision 0)
-+++ sc/source/ui/vba/testvba/Logs/format.log (revision 276288)
-@@ -0,0 +1,36 @@
-+Test run started : 17/09/2009 12:17:09
-+BEGIN Format
-+ TEST START : Test Predefined_Number_Format_Sample function
-+ ITEM Assertion OK : General Number: 562486.2356
-+ ITEM Assertion OK : Fixed: 0.20
-+ ITEM Assertion OK : Standard: 562,486.24
-+ ITEM Assertion OK : Percent: 75.21%
-+ ITEM Assertion OK : Scientific: 5.62E+05
-+ ITEM Assertion OK : Scientific: -3.46E+03
-+ ITEM Assertion OK : Yes/No: No
-+ ITEM Assertion OK : Yes/No: Yes
-+ ITEM Assertion OK : True/False: False
-+ ITEM Assertion OK : True/False: True
-+ ITEM Assertion OK : On/Off: Off
-+ ITEM Assertion OK : On/Off: On
-+ TEST OK : Test Predefined_Number_Format_Sample function
-+ TEST START : Test Custom_Number_Format_Sample function
-+ ITEM Assertion OK : 00.0000: 23.6750
-+ ITEM Assertion OK : 00.00: 23.68
-+ ITEM Assertion OK : 00000: 02658
-+ ITEM Assertion OK : 00.00: 2658.00
-+ ITEM Assertion OK : ##.####: 23.675
-+ ITEM Assertion OK : ##.##: 23.68
-+ ITEM Assertion OK : #,###.##: 12,345.25
-+ ITEM Assertion OK : ##.00%: 25.00%
-+ ITEM Assertion OK : #,###: 1,000,000
-+ ITEM Assertion OK : ######E-###: 109838E-5
-+ ITEM Assertion OK : $#,###.##: $2,345.25
-+ ITEM Assertion OK : ##.###\%: .25%
-+ TEST OK : Test Custom_Number_Format_Sample function
-+ TEST START : Test Custom_Text_Format_Sample function
-+ ITEM Assertion OK : <: vba
-+ ITEM Assertion OK : >: VBA
-+ TEST OK : Test Custom_Text_Format_Sample function
-+END Format
-+Test run finished : 17/09/2009 12:17:09
-Index: sc/source/ui/vba/testvba/Logs/CalcFont.log
-===================================================================
---- sc/source/ui/vba/testvba/Logs/CalcFont.log (revision 0)
-+++ sc/source/ui/vba/testvba/Logs/CalcFont.log (revision 276288)
-@@ -0,0 +1,17 @@
-+Test run started : 17/09/2009 12:17:04
-+CalcFont_Format
-+ TEST START : Font_Format
-+ ITEM Assertion OK : correctly set font to Bold
-+ ITEM Assertion OK : correctly set font to Italic
-+ ITEM Assertion OK : correctly read FontStyle
-+ ITEM Assertion OK : correctly set font to Shadow
-+ ITEM Assertion OK : correctly set font color
-+ ITEM Assertion OK : correctly set font color index
-+ ITEM Assertion OK : correctly set font name
-+ ITEM Assertion OK : correctly set font outline
-+ ITEM Assertion OK : correctly set font size
-+ ITEM Assertion OK : correctly set font strikethrough
-+ ITEM Assertion OK : correctly set font underline
-+ TEST Success. : Font_Format
-+CalcFont_Format
-+Test run finished : 17/09/2009 12:17:05
-Index: sc/source/ui/vba/testvba/Logs/bytearraystring.log
-===================================================================
---- sc/source/ui/vba/testvba/Logs/bytearraystring.log (revision 0)
-+++ sc/source/ui/vba/testvba/Logs/bytearraystring.log (revision 276288)
-@@ -0,0 +1,8 @@
-+Test run started : 17/09/2009 12:17:03
-+BEGIN Bytearray To String
-+ TEST START : Test the conversion between bytearray and string
-+ ITEM Assertion OK : The number of byte is:6
-+ ITEM Assertion OK : the return string is: abc
-+ TEST OK : Test the conversion between bytearray and string
-+END Bytearray To String
-+Test run finished : 17/09/2009 12:17:03
-Index: sc/source/ui/vba/testvba/Logs/window2.log
-===================================================================
---- sc/source/ui/vba/testvba/Logs/window2.log (revision 0)
-+++ sc/source/ui/vba/testvba/Logs/window2.log (revision 276288)
-@@ -0,0 +1,41 @@
-+Test run started : 17/09/2009 12:16:59
-+BEGIN Window2
-+ TEST START : Test Window.SplitRow
-+ ITEM Assertion OK : Test SplitColumn: 2 (Test only applies to maximized Window and at least has 800*600 solotion)
-+ ITEM Assertion OK : Test SplitRow: 2 (Test only applies to maximized Window and at least has 800*600 solotion)
-+ ITEM Assertion OK : Test SplitVertical: 242.283803521067
-+ ITEM Assertion OK : Test SplitHorizontal: 242.283803521067
-+ ITEM Assertion OK : Test SplitRow: 4 (Test only applies to maximized Window and at least has 800*600 solotion)
-+ ITEM Assertion OK : Test SplitColumn: 3 (Test only applies to maximized Window and at least has 800*600 solotion)
-+ ITEM Assertion OK : Test SplitColumn: 0
-+ ITEM Assertion OK : Test SplitRow: 0
-+ TEST OK : Test Window.SplitRow
-+ TEST START : Test Window.DisplayGridlines
-+ ITEM Assertion OK : Test gridlines are on
-+ ITEM Assertion OK : Test gridlines are off
-+ TEST OK : Test Window.DisplayGridlines
-+ TEST START : Test Window.DisplayHeadings
-+ ITEM Assertion OK : Test Headings are on
-+ ITEM Assertion OK : Test Headings are off
-+ TEST OK : Test Window.DisplayHeadings
-+ TEST START : Test Window.Visibility
-+ ITEM Assertion OK : Window is visible
-+ ITEM Assertion OK : Window is not visible
-+ TEST OK : Test Window.Visibility
-+ TEST START : Test Window.FreezePanes
-+ ITEM Assertion OK : Test no panes frozen
-+ ITEM Assertion OK : Test panes frozen at center
-+ ITEM Assertion OK : Test panes frozen at split
-+ TEST OK : Test Window.FreezePanes
-+ TEST START : Test Window.View
-+ TEST OK : Test Window.View
-+ TEST START : Test Window.Zoom
-+ ITEM Assertion OK : Test zoom=100%
-+ ITEM Assertion OK : Test zoom=150%
-+ TEST OK : Test Window.Zoom
-+ TEST START : Test Windows.Count
-+ ITEM Assertion OK : Windows Count: 1
-+ ITEM Assertion OK : Application.Windows Count: 1
-+ TEST OK : Test Windows.Count
-+END Window2
-+Test run finished : 17/09/2009 12:17:00
-Index: sc/source/ui/vba/testvba/Logs/MiscOperatorTests.log
-===================================================================
---- sc/source/ui/vba/testvba/Logs/MiscOperatorTests.log (revision 0)
-+++ sc/source/ui/vba/testvba/Logs/MiscOperatorTests.log (revision 276288)
-@@ -0,0 +1,30 @@
-+Test run started : 17/09/2009 12:17:10
-+----------------------------------------------------------------
-+TestAddress
-+ TEST START : TestAddress
-+ ITEM Assertion OK : test1: res = Not ( A > B )
-+ ITEM Assertion OK : test2: res = Not ( B > A )
-+ ITEM Assertion OK : test3: res = Not ( D )
-+ ITEM Assertion OK : test4: res = Not A
-+ ITEM Assertion OK : test5: res = ( A > D )
-+ ITEM Assertion OK : test6: res = ( D > A )
-+ ITEM Assertion OK : test7: res = ( A < D )
-+ ITEM Assertion OK : test8: res = ( D < A )
-+ ITEM Assertion OK : test9: res = ( A >= D )
-+ ITEM Assertion OK : test10: res = ( D >= A )
-+ ITEM Assertion OK : test11: res = ( A <= D )
-+ ITEM Assertion OK : test12: res = ( D <= A )
-+ ITEM Assertion OK : test13: res = ( D = A )
-+ ITEM Assertion OK : test14: res = ( A = D )
-+ ITEM Assertion OK : test15: res = ( D <> A )
-+ ITEM Assertion OK : test16: res = ( A <> D )
-+ ITEM Assertion OK : test17: ( A = D ) = True
-+Test Results
-+============
-+
-+Tests passed: 17
-+Tests failed: 0
-+
-+END 'TestAddress
-+ TEST OK : TestAddress
-+Test run finished : 17/09/2009 12:17:10
-Index: sc/source/ui/vba/testvba/Logs/MiscRangeTests.log
-===================================================================
---- sc/source/ui/vba/testvba/Logs/MiscRangeTests.log (revision 0)
-+++ sc/source/ui/vba/testvba/Logs/MiscRangeTests.log (revision 276288)
-@@ -0,0 +1,45 @@
-+Test run started : 17/09/2009 12:17:12
-+----------------------------------------------------------------
-+MiscRangeTests
-+ TEST START : MiscRangeTests
-+ ITEM Assertion OK : test 1
-+ ITEM Assertion OK : test 2
-+ ITEM Assertion OK : test 3
-+ ITEM Assertion OK : test 4
-+ ITEM Assertion OK : test 5
-+ ITEM Assertion OK : test 6
-+ ITEM Assertion OK : test 7
-+ ITEM Assertion OK : test 8
-+ ITEM Assertion OK : test 9
-+ ITEM Assertion OK : test 10
-+ ITEM Assertion OK : test 11
-+ ITEM Assertion OK : test 12
-+ ITEM Assertion OK : test 13
-+ ITEM Assertion OK : test 14
-+ ITEM Assertion OK : test 15
-+ ITEM Assertion OK : test 16
-+ ITEM Assertion OK : test 17
-+ ITEM Assertion OK : test 18
-+ ITEM Assertion OK : test 19
-+ ITEM Assertion OK : test 20
-+ ITEM Assertion OK : test 21
-+ ITEM Assertion OK : test 22
-+ ITEM Assertion OK : test 23
-+ ITEM Assertion OK : test 24
-+ ITEM Assertion OK : test 25
-+ ITEM Assertion OK : test 26
-+ ITEM Assertion OK : test 27
-+ ITEM Assertion OK : test 28
-+ ITEM Assertion OK : test 29
-+ ITEM Assertion OK : test 30
-+ ITEM Assertion OK : test 31
-+No. tests: 31
-+Summary
-+=======
-+Run: 31
-+Passed: 31
-+Failed: 0
-+
-+END 'MiscRangeTests
-+ TEST OK : MiscRangeTests
-+Test run finished : 17/09/2009 12:17:14
-Index: sc/source/ui/vba/testvba/Logs/pagesetup.log
-===================================================================
---- sc/source/ui/vba/testvba/Logs/pagesetup.log (revision 0)
-+++ sc/source/ui/vba/testvba/Logs/pagesetup.log (revision 276288)
-@@ -0,0 +1,77 @@
-+Test run started : 17/09/2009 12:18:11
-+BEGIN PageSetup
-+ TEST START : Sheet_PrintArea
-+ ITEM Assertion OK : PrintArea has changed as expected
-+ TEST OK : Sheet_PrintArea
-+ TEST START : Test margins (no headers)
-+ ITEM Assertion OK : PageSetup.LeftMargin set/get
-+ ITEM Assertion OK : PageSetup.RightMargin set/get
-+ ITEM Assertion OK : PageSetup.TopMargin set/get
-+ ITEM Assertion OK : PageSetup.BottomMargin set/get
-+Verify that page margins on sheet 1 are all 0.5inch
-+ TEST OK : Test margins (no headers)
-+ TEST START : Test margins (headers)
-+ ITEM Assertion OK : PageSetup.HeaderMargin set/get
-+ ITEM Assertion OK : PageSetup.FooterMargin set/get
-+ ITEM Assertion OK : PageSetup.LeftMargin set/get
-+ ITEM Assertion OK : PageSetup.LeftMargin set/get
-+Verify that top/bottom/header/footer page margins on sheet 2 are all 0.5inch
-+ TEST OK : Test margins (headers)
-+ TEST START : Test header/footer text
-+ ITEM Assertion OK : PageSetup.LeftHeader set
-+ ITEM Assertion OK : PageSetup.LeftHeader set/get
-+ ITEM Assertion OK : PageSetup.CenterHeader set
-+ ITEM Assertion OK : PageSetup.CenterHeader set/get
-+ ITEM Assertion OK : PageSetup.RightHeader set
-+ ITEM Assertion OK : PageSetup.RightHeader set/get
-+ ITEM Assertion OK : PageSetup.LeftFooter set
-+ ITEM Assertion OK : PageSetup.LeftFooter set/get
-+ ITEM Assertion OK : PageSetup.CenterFooter set
-+ ITEM Assertion OK : PageSetup.CenterFooter set/get
-+ ITEM Assertion OK : PageSetup.RightFooter set
-+ ITEM Assertion OK : PageSetup.RightFooter set/get
-+Verify that headers on sheet 2 are Ready,to,go
-+Verify that footers on sheet 2 are This,now,Works
-+ TEST OK : Test header/footer text
-+ TEST START : Test zoom
-+ ITEM Assertion OK : PageSetup.Zoom set
-+ ITEM Assertion OK : PageSetup.Zoom set/get
-+Verify that sheet 1 zoom is 10%
-+ TEST OK : Test zoom
-+ TEST START : Test orientation
-+ ITEM Assertion OK : PageSetup.Zoom set
-+ ITEM Assertion OK : PageSetup.Orientation set/get
-+Verify that sheet 1 orientation is now landscape
-+ TEST OK : Test orientation
-+ TEST START : Test order
-+ ITEM Assertion OK : PageSetup.Order get
-+ ITEM Assertion OK : PageSetup.Order set/get
-+Verify that order on sheet 1 is now over, then down.
-+ TEST OK : Test order
-+ TEST START : Test first page number
-+ ITEM Assertion OK : PageSetup.FirstPageNumber get
-+ ITEM Assertion OK : PageSetup.FirstPageNumber set/get
-+Verify that first page number on sheet 1 is now 2.
-+ TEST OK : Test first page number
-+ TEST START : Test center vertically
-+ ITEM Assertion OK : PageSetup.CenterVertically get
-+ ITEM Assertion OK : PageSetup.CenterVertically set/get
-+Verify that CenterVertically on sheet 1 is now true.
-+ TEST OK : Test center vertically
-+ TEST START : Test center horizontally
-+ ITEM Assertion OK : PageSetup.CenterHorizontally get
-+ ITEM Assertion OK : PageSetup.CenterHorizontally set/get
-+Verify that CenterHorizontally on sheet 1 is now true.
-+ TEST OK : Test center horizontally
-+ TEST START : Test FitToPagesTall
-+ ITEM Assertion OK : PageSetup.FitToPagesTall set/get
-+ TEST OK : Test FitToPagesTall
-+ TEST START : Test FitToPagesWide
-+ ITEM Assertion OK : PageSetup.FitToPagesWide set/get
-+ TEST OK : Test FitToPagesWide
-+ TEST START : Test PrintHeadings
-+ ITEM Assertion OK : PageSetup.PrintHeadings set/get
-+ ITEM Assertion OK : PageSetup.PrintHeadings set/get
-+ TEST OK : Test PrintHeadings
-+END PageSetup
-+Test run finished : 17/09/2009 12:18:11
-Index: sc/source/ui/vba/testvba/Logs/range-4.log
-===================================================================
---- sc/source/ui/vba/testvba/Logs/range-4.log (revision 0)
-+++ sc/source/ui/vba/testvba/Logs/range-4.log (revision 276288)
-@@ -0,0 +1,16 @@
-+Test run started : 17/09/2009 12:17:19
-+----------------------------------------------------------------
-+ShowDetail-Issue
-+ TEST START : ShowDetail-Issue
-+ ITEM Assertion OK : Range.ShowDetail is True
-+ ITEM Assertion OK : Range.ShowDetail is False
-+END 'ShowDetail-Issue' Symbol
-+ TEST OK : ShowDetail-Issue
-+----------------------------------------------------------------
-+RangeMerged-Issue
-+ TEST START : RangeMerged-Issue
-+ ITEM Assertion OK : Range.RangeMerged is $F$2:$H$5
-+ ITEM Assertion OK : The first address of Range.RangeMerged is $F$2
-+END 'RangeMerged-Issue' Symbol
-+ TEST OK : RangeMerged-Issue
-+Test run finished : 17/09/2009 12:17:19
-Index: sc/source/ui/vba/testvba/testrun.log
-===================================================================
---- sc/source/ui/vba/testvba/testrun.log (revision 0)
-+++ sc/source/ui/vba/testvba/testrun.log (revision 276288)
-@@ -0,0 +1,417 @@
-+thanks, you gave me 1 command-line arguments.
-+/media/disk/Openoffice-BUILDS/UBERCWS/IBM_NOVELL_TESTBUILD/opt/openoffice.org
-+use the latest build
-+Linux
-+0 = ( 0 || 0 || 0 )
-+/media/disk/Openoffice-BUILDS/UBERCWS/IBM_NOVELL_TESTBUILD/opt/openoffice.org:/media/disk/Openoffice-BUILDS/UBERCWS/IBM_NOVELL_TESTBUILD/opt/openoffice.org3/program:/media/disk/Openoffice-BUILDS/UBERCWS/IBM_NOVELL_TESTBUILD/opt/openoffice.org/program::/media/disk/Openoffice-BUILDS/UBERCWS/IBM_NOVELL_TESTBUILD/opt/openoffice.org/basis3.2/program:/media/disk/Openoffice-BUILDS/UBERCWS/IBM_NOVELL_TESTBUILD/opt/openoffice.org/ure/lib:/usr/lib/mpi/gcc/openmpi/lib
-+/media/disk/Openoffice-BUILDS/UBERCWS/IBM_NOVELL_TESTBUILD/opt/openoffice.org3/program:/media/disk/Openoffice-BUILDS/UBERCWS/IBM_NOVELL_TESTBUILD/opt/openoffice.org/program::/media/disk/Openoffice-BUILDS/UBERCWS/IBM_NOVELL_TESTBUILD/opt/openoffice.org/basis3.2/program:/media/disk/Openoffice-BUILDS/UBERCWS/IBM_NOVELL_TESTBUILD/opt/openoffice.org/ure/lib/../bin:/usr/lib/mpi/gcc/openmpi/bin:/data4/home/npower/bin:/usr/local/bin:/usr/bin:/bin:/usr/bin/X11:/usr/X11R6/bin:/usr/games:/opt/kde3/bin:/usr/lib/mit/bin:/usr/lib/mit/sbin:/usr/lib/qt3/bin:/opt/real/RealPlayer
-+en_GB.UTF-8
-+runCmd = /media/disk/Openoffice-BUILDS/UBERCWS/vbasupportdev300/sc/source/ui/vba/testvba/testclient /media/disk/Openoffice-BUILDS/UBERCWS/vbasupportdev300/sc/source/ui/vba/testvba/TestDocuments /media/disk/Openoffice-BUILDS/UBERCWS/vbasupportdev300/sc/source/ui/vba/testvba/Logs
-+got servicemanager
-+got desktop
-+Entries 28
-+processing file:///media/disk/Openoffice-BUILDS/UBERCWS/vbasupportdev300/sc/source/ui/vba/testvba/TestDocuments/window2.xls
-+try to get xDoc file:///media/disk/Openoffice-BUILDS/UBERCWS/vbasupportdev300/sc/source/ui/vba/testvba/TestDocuments/window2.xls
-+got xDoc
-+try to get the ScriptProvider
-+get the ScriptProvider
-+try to get the Script
-+get the Script
-+move log file
-+/data4/home/npower
-+file name /window2.xls
-+move log file from file:///data4/home/npower/Documents//window2.log
-+moved to new location
-+try to close
-+closed
-+complete processing file:///media/disk/Openoffice-BUILDS/UBERCWS/vbasupportdev300/sc/source/ui/vba/testvba/TestDocuments/window2.xls
-+processing file:///media/disk/Openoffice-BUILDS/UBERCWS/vbasupportdev300/sc/source/ui/vba/testvba/TestDocuments/AutoFilter.xls
-+try to get xDoc file:///media/disk/Openoffice-BUILDS/UBERCWS/vbasupportdev300/sc/source/ui/vba/testvba/TestDocuments/AutoFilter.xls
-+got xDoc
-+try to get the ScriptProvider
-+get the ScriptProvider
-+try to get the Script
-+get the Script
-+move log file
-+moved to new location
-+try to close
-+closed
-+complete processing file:///media/disk/Openoffice-BUILDS/UBERCWS/vbasupportdev300/sc/source/ui/vba/testvba/TestDocuments/AutoFilter.xls
-+processing file:///media/disk/Openoffice-BUILDS/UBERCWS/vbasupportdev300/sc/source/ui/vba/testvba/TestDocuments/bytearraystring.xls
-+try to get xDoc file:///media/disk/Openoffice-BUILDS/UBERCWS/vbasupportdev300/sc/source/ui/vba/testvba/TestDocuments/bytearraystring.xls
-+got xDoc
-+try to get the ScriptProvider
-+get the ScriptProvider
-+try to get the Script
-+get the Script
-+move log file
-+/data4/home/npower
-+file name /bytearraystring.xls
-+move log file from file:///data4/home/npower/Documents//bytearraystring.log
-+moved to new location
-+try to close
-+closed
-+complete processing file:///media/disk/Openoffice-BUILDS/UBERCWS/vbasupportdev300/sc/source/ui/vba/testvba/TestDocuments/bytearraystring.xls
-+processing file:///media/disk/Openoffice-BUILDS/UBERCWS/vbasupportdev300/sc/source/ui/vba/testvba/TestDocuments/CalcFont.xls
-+try to get xDoc file:///media/disk/Openoffice-BUILDS/UBERCWS/vbasupportdev300/sc/source/ui/vba/testvba/TestDocuments/CalcFont.xls
-+got xDoc
-+try to get the ScriptProvider
-+get the ScriptProvider
-+try to get the Script
-+get the Script
-+move log file
-+moved to new location
-+try to close
-+closed
-+complete processing file:///media/disk/Openoffice-BUILDS/UBERCWS/vbasupportdev300/sc/source/ui/vba/testvba/TestDocuments/CalcFont.xls
-+processing file:///media/disk/Openoffice-BUILDS/UBERCWS/vbasupportdev300/sc/source/ui/vba/testvba/TestDocuments/dateserial.xls
-+try to get xDoc file:///media/disk/Openoffice-BUILDS/UBERCWS/vbasupportdev300/sc/source/ui/vba/testvba/TestDocuments/dateserial.xls
-+got xDoc
-+try to get the ScriptProvider
-+get the ScriptProvider
-+try to get the Script
-+get the Script
-+move log file
-+/data4/home/npower
-+file name /dateserial.xls
-+move log file from file:///data4/home/npower/Documents//dateserial.log
-+moved to new location
-+try to close
-+closed
-+complete processing file:///media/disk/Openoffice-BUILDS/UBERCWS/vbasupportdev300/sc/source/ui/vba/testvba/TestDocuments/dateserial.xls
-+processing file:///media/disk/Openoffice-BUILDS/UBERCWS/vbasupportdev300/sc/source/ui/vba/testvba/TestDocuments/datevalue.xls
-+try to get xDoc file:///media/disk/Openoffice-BUILDS/UBERCWS/vbasupportdev300/sc/source/ui/vba/testvba/TestDocuments/datevalue.xls
-+got xDoc
-+try to get the ScriptProvider
-+get the ScriptProvider
-+try to get the Script
-+get the Script
-+move log file
-+/data4/home/npower
-+file name /datevalue.xls
-+move log file from file:///data4/home/npower/Documents//datevalue.log
-+moved to new location
-+try to close
-+closed
-+complete processing file:///media/disk/Openoffice-BUILDS/UBERCWS/vbasupportdev300/sc/source/ui/vba/testvba/TestDocuments/datevalue.xls
-+processing file:///media/disk/Openoffice-BUILDS/UBERCWS/vbasupportdev300/sc/source/ui/vba/testvba/TestDocuments/format.xls
-+try to get xDoc file:///media/disk/Openoffice-BUILDS/UBERCWS/vbasupportdev300/sc/source/ui/vba/testvba/TestDocuments/format.xls
-+got xDoc
-+try to get the ScriptProvider
-+get the ScriptProvider
-+try to get the Script
-+get the Script
-+move log file
-+/data4/home/npower
-+file name /format.xls
-+move log file from file:///data4/home/npower/Documents//format.log
-+moved to new location
-+try to close
-+closed
-+complete processing file:///media/disk/Openoffice-BUILDS/UBERCWS/vbasupportdev300/sc/source/ui/vba/testvba/TestDocuments/format.xls
-+processing file:///media/disk/Openoffice-BUILDS/UBERCWS/vbasupportdev300/sc/source/ui/vba/testvba/TestDocuments/MiscOperatorTests.xls
-+try to get xDoc file:///media/disk/Openoffice-BUILDS/UBERCWS/vbasupportdev300/sc/source/ui/vba/testvba/TestDocuments/MiscOperatorTests.xls
-+got xDoc
-+try to get the ScriptProvider
-+get the ScriptProvider
-+try to get the Script
-+get the Script
-+move log file
-+moved to new location
-+try to close
-+closed
-+complete processing file:///media/disk/Openoffice-BUILDS/UBERCWS/vbasupportdev300/sc/source/ui/vba/testvba/TestDocuments/MiscOperatorTests.xls
-+processing file:///media/disk/Openoffice-BUILDS/UBERCWS/vbasupportdev300/sc/source/ui/vba/testvba/TestDocuments/MiscRangeTests.xls
-+try to get xDoc file:///media/disk/Openoffice-BUILDS/UBERCWS/vbasupportdev300/sc/source/ui/vba/testvba/TestDocuments/MiscRangeTests.xls
-+got xDoc
-+try to get the ScriptProvider
-+get the ScriptProvider
-+try to get the Script
-+get the Script
-+move log file
-+moved to new location
-+try to close
-+closed
-+complete processing file:///media/disk/Openoffice-BUILDS/UBERCWS/vbasupportdev300/sc/source/ui/vba/testvba/TestDocuments/MiscRangeTests.xls
-+processing file:///media/disk/Openoffice-BUILDS/UBERCWS/vbasupportdev300/sc/source/ui/vba/testvba/TestDocuments/PageBreaks.xls
-+try to get xDoc file:///media/disk/Openoffice-BUILDS/UBERCWS/vbasupportdev300/sc/source/ui/vba/testvba/TestDocuments/PageBreaks.xls
-+got xDoc
-+try to get the ScriptProvider
-+get the ScriptProvider
-+try to get the Script
-+get the Script
-+move log file
-+/data4/home/npower
-+file name /PageBreaks.xls
-+move log file from file:///data4/home/npower/Documents//PageBreaks.log
-+moved to new location
-+try to close
-+closed
-+complete processing file:///media/disk/Openoffice-BUILDS/UBERCWS/vbasupportdev300/sc/source/ui/vba/testvba/TestDocuments/PageBreaks.xls
-+processing file:///media/disk/Openoffice-BUILDS/UBERCWS/vbasupportdev300/sc/source/ui/vba/testvba/TestDocuments/PageSetup.xls
-+try to get xDoc file:///media/disk/Openoffice-BUILDS/UBERCWS/vbasupportdev300/sc/source/ui/vba/testvba/TestDocuments/PageSetup.xls
-+got xDoc
-+try to get the ScriptProvider
-+get the ScriptProvider
-+try to get the Script
-+get the Script
-+move log file
-+/data4/home/npower
-+file name /PageSetup.xls
-+move log file from file:///data4/home/npower/Documents//PageSetup.log
-+try to close
-+closed
-+complete processing file:///media/disk/Openoffice-BUILDS/UBERCWS/vbasupportdev300/sc/source/ui/vba/testvba/TestDocuments/PageSetup.xls
-+processing file:///media/disk/Openoffice-BUILDS/UBERCWS/vbasupportdev300/sc/source/ui/vba/testvba/TestDocuments/partition.xls
-+try to get xDoc file:///media/disk/Openoffice-BUILDS/UBERCWS/vbasupportdev300/sc/source/ui/vba/testvba/TestDocuments/partition.xls
-+got xDoc
-+try to get the ScriptProvider
-+get the ScriptProvider
-+try to get the Script
-+get the Script
-+move log file
-+/data4/home/npower
-+file name /partition.xls
-+move log file from file:///data4/home/npower/Documents//partition.log
-+moved to new location
-+try to close
-+closed
-+complete processing file:///media/disk/Openoffice-BUILDS/UBERCWS/vbasupportdev300/sc/source/ui/vba/testvba/TestDocuments/partition.xls
-+processing file:///media/disk/Openoffice-BUILDS/UBERCWS/vbasupportdev300/sc/source/ui/vba/testvba/TestDocuments/range-4.xls
-+try to get xDoc file:///media/disk/Openoffice-BUILDS/UBERCWS/vbasupportdev300/sc/source/ui/vba/testvba/TestDocuments/range-4.xls
-+got xDoc
-+try to get the ScriptProvider
-+get the ScriptProvider
-+try to get the Script
-+get the Script
-+move log file
-+/data4/home/npower
-+file name /range-4.xls
-+move log file from file:///data4/home/npower/Documents//range-4.log
-+moved to new location
-+try to close
-+closed
-+complete processing file:///media/disk/Openoffice-BUILDS/UBERCWS/vbasupportdev300/sc/source/ui/vba/testvba/TestDocuments/range-4.xls
-+processing file:///media/disk/Openoffice-BUILDS/UBERCWS/vbasupportdev300/sc/source/ui/vba/testvba/TestDocuments/Ranges-2.xls
-+try to get xDoc file:///media/disk/Openoffice-BUILDS/UBERCWS/vbasupportdev300/sc/source/ui/vba/testvba/TestDocuments/Ranges-2.xls
-+got xDoc
-+try to get the ScriptProvider
-+get the ScriptProvider
-+try to get the Script
-+get the Script
-+move log file
-+moved to new location
-+try to close
-+closed
-+complete processing file:///media/disk/Openoffice-BUILDS/UBERCWS/vbasupportdev300/sc/source/ui/vba/testvba/TestDocuments/Ranges-2.xls
-+processing file:///media/disk/Openoffice-BUILDS/UBERCWS/vbasupportdev300/sc/source/ui/vba/testvba/TestDocuments/Ranges-3.xls
-+try to get xDoc file:///media/disk/Openoffice-BUILDS/UBERCWS/vbasupportdev300/sc/source/ui/vba/testvba/TestDocuments/Ranges-3.xls
-+got xDoc
-+try to get the ScriptProvider
-+get the ScriptProvider
-+try to get the Script
-+get the Script
-+move log file
-+moved to new location
-+try to close
-+closed
-+complete processing file:///media/disk/Openoffice-BUILDS/UBERCWS/vbasupportdev300/sc/source/ui/vba/testvba/TestDocuments/Ranges-3.xls
-+processing file:///media/disk/Openoffice-BUILDS/UBERCWS/vbasupportdev300/sc/source/ui/vba/testvba/TestDocuments/Ranges.xls
-+try to get xDoc file:///media/disk/Openoffice-BUILDS/UBERCWS/vbasupportdev300/sc/source/ui/vba/testvba/TestDocuments/Ranges.xls
-+got xDoc
-+try to get the ScriptProvider
-+get the ScriptProvider
-+try to get the Script
-+get the Script
-+move log file
-+moved to new location
-+try to close
-+closed
-+complete processing file:///media/disk/Openoffice-BUILDS/UBERCWS/vbasupportdev300/sc/source/ui/vba/testvba/TestDocuments/Ranges.xls
-+processing file:///media/disk/Openoffice-BUILDS/UBERCWS/vbasupportdev300/sc/source/ui/vba/testvba/TestDocuments/replace.xls
-+try to get xDoc file:///media/disk/Openoffice-BUILDS/UBERCWS/vbasupportdev300/sc/source/ui/vba/testvba/TestDocuments/replace.xls
-+got xDoc
-+try to get the ScriptProvider
-+get the ScriptProvider
-+try to get the Script
-+get the Script
-+move log file
-+/data4/home/npower
-+file name /replace.xls
-+move log file from file:///data4/home/npower/Documents//replace.log
-+moved to new location
-+try to close
-+closed
-+complete processing file:///media/disk/Openoffice-BUILDS/UBERCWS/vbasupportdev300/sc/source/ui/vba/testvba/TestDocuments/replace.xls
-+processing file:///media/disk/Openoffice-BUILDS/UBERCWS/vbasupportdev300/sc/source/ui/vba/testvba/TestDocuments/Shapes.xls
-+try to get xDoc file:///media/disk/Openoffice-BUILDS/UBERCWS/vbasupportdev300/sc/source/ui/vba/testvba/TestDocuments/Shapes.xls
-+got xDoc
-+try to get the ScriptProvider
-+get the ScriptProvider
-+try to get the Script
-+get the Script
-+move log file
-+moved to new location
-+try to close
-+closed
-+complete processing file:///media/disk/Openoffice-BUILDS/UBERCWS/vbasupportdev300/sc/source/ui/vba/testvba/TestDocuments/Shapes.xls
-+processing file:///media/disk/Openoffice-BUILDS/UBERCWS/vbasupportdev300/sc/source/ui/vba/testvba/TestDocuments/StrConv-test.xls
-+try to get xDoc file:///media/disk/Openoffice-BUILDS/UBERCWS/vbasupportdev300/sc/source/ui/vba/testvba/TestDocuments/StrConv-test.xls
-+got xDoc
-+try to get the ScriptProvider
-+get the ScriptProvider
-+try to get the Script
-+get the Script
-+move log file
-+/data4/home/npower
-+file name /StrConv-test.xls
-+move log file from file:///data4/home/npower/Documents//StrConv-test.log
-+moved to new location
-+try to close
-+closed
-+complete processing file:///media/disk/Openoffice-BUILDS/UBERCWS/vbasupportdev300/sc/source/ui/vba/testvba/TestDocuments/StrConv-test.xls
-+processing file:///media/disk/Openoffice-BUILDS/UBERCWS/vbasupportdev300/sc/source/ui/vba/testvba/TestDocuments/stringplusdouble.xls
-+try to get xDoc file:///media/disk/Openoffice-BUILDS/UBERCWS/vbasupportdev300/sc/source/ui/vba/testvba/TestDocuments/stringplusdouble.xls
-+got xDoc
-+try to get the ScriptProvider
-+get the ScriptProvider
-+try to get the Script
-+get the Script
-+move log file
-+/data4/home/npower
-+file name /stringplusdouble.xls
-+move log file from file:///data4/home/npower/Documents//stringplusdouble.log
-+moved to new location
-+try to close
-+closed
-+complete processing file:///media/disk/Openoffice-BUILDS/UBERCWS/vbasupportdev300/sc/source/ui/vba/testvba/TestDocuments/stringplusdouble.xls
-+processing file:///media/disk/Openoffice-BUILDS/UBERCWS/vbasupportdev300/sc/source/ui/vba/testvba/TestDocuments/Template.xls
-+try to get xDoc file:///media/disk/Openoffice-BUILDS/UBERCWS/vbasupportdev300/sc/source/ui/vba/testvba/TestDocuments/Template.xls
-+got xDoc
-+try to get the ScriptProvider
-+get the ScriptProvider
-+try to get the Script
-+get the Script
-+move log file
-+moved to new location
-+try to close
-+closed
-+complete processing file:///media/disk/Openoffice-BUILDS/UBERCWS/vbasupportdev300/sc/source/ui/vba/testvba/TestDocuments/Template.xls
-+processing file:///media/disk/Openoffice-BUILDS/UBERCWS/vbasupportdev300/sc/source/ui/vba/testvba/TestDocuments/TestAddress.xls
-+try to get xDoc file:///media/disk/Openoffice-BUILDS/UBERCWS/vbasupportdev300/sc/source/ui/vba/testvba/TestDocuments/TestAddress.xls
-+got xDoc
-+try to get the ScriptProvider
-+get the ScriptProvider
-+try to get the Script
-+get the Script
-+move log file
-+moved to new location
-+try to close
-+closed
-+complete processing file:///media/disk/Openoffice-BUILDS/UBERCWS/vbasupportdev300/sc/source/ui/vba/testvba/TestDocuments/TestAddress.xls
-+processing file:///media/disk/Openoffice-BUILDS/UBERCWS/vbasupportdev300/sc/source/ui/vba/testvba/TestDocuments/TestCalc_Rangetest2.xls
-+try to get xDoc file:///media/disk/Openoffice-BUILDS/UBERCWS/vbasupportdev300/sc/source/ui/vba/testvba/TestDocuments/TestCalc_Rangetest2.xls
-+got xDoc
-+try to get the ScriptProvider
-+get the ScriptProvider
-+try to get the Script
-+get the Script
-+move log file
-+moved to new location
-+try to close
-+closed
-+complete processing file:///media/disk/Openoffice-BUILDS/UBERCWS/vbasupportdev300/sc/source/ui/vba/testvba/TestDocuments/TestCalc_Rangetest2.xls
-+processing file:///media/disk/Openoffice-BUILDS/UBERCWS/vbasupportdev300/sc/source/ui/vba/testvba/TestDocuments/TestCalc_Rangetest.xls
-+try to get xDoc file:///media/disk/Openoffice-BUILDS/UBERCWS/vbasupportdev300/sc/source/ui/vba/testvba/TestDocuments/TestCalc_Rangetest.xls
-+got xDoc
-+try to get the ScriptProvider
-+get the ScriptProvider
-+try to get the Script
-+get the Script
-+move log file
-+moved to new location
-+try to close
-+closed
-+complete processing file:///media/disk/Openoffice-BUILDS/UBERCWS/vbasupportdev300/sc/source/ui/vba/testvba/TestDocuments/TestCalc_Rangetest.xls
-+processing file:///media/disk/Openoffice-BUILDS/UBERCWS/vbasupportdev300/sc/source/ui/vba/testvba/TestDocuments/TestIntersection.xls
-+try to get xDoc file:///media/disk/Openoffice-BUILDS/UBERCWS/vbasupportdev300/sc/source/ui/vba/testvba/TestDocuments/TestIntersection.xls
-+got xDoc
-+try to get the ScriptProvider
-+get the ScriptProvider
-+try to get the Script
-+get the Script
-+move log file
-+moved to new location
-+try to close
-+closed
-+complete processing file:///media/disk/Openoffice-BUILDS/UBERCWS/vbasupportdev300/sc/source/ui/vba/testvba/TestDocuments/TestIntersection.xls
-+processing file:///media/disk/Openoffice-BUILDS/UBERCWS/vbasupportdev300/sc/source/ui/vba/testvba/TestDocuments/TestUnion.xls
-+try to get xDoc file:///media/disk/Openoffice-BUILDS/UBERCWS/vbasupportdev300/sc/source/ui/vba/testvba/TestDocuments/TestUnion.xls
-+got xDoc
-+try to get the ScriptProvider
-+get the ScriptProvider
-+try to get the Script
-+get the Script
-+move log file
-+moved to new location
-+try to close
-+closed
-+complete processing file:///media/disk/Openoffice-BUILDS/UBERCWS/vbasupportdev300/sc/source/ui/vba/testvba/TestDocuments/TestUnion.xls
-+processing file:///media/disk/Openoffice-BUILDS/UBERCWS/vbasupportdev300/sc/source/ui/vba/testvba/TestDocuments/VariantTest.xls
-+try to get xDoc file:///media/disk/Openoffice-BUILDS/UBERCWS/vbasupportdev300/sc/source/ui/vba/testvba/TestDocuments/VariantTest.xls
-+got xDoc
-+try to get the ScriptProvider
-+get the ScriptProvider
-+try to get the Script
-+get the Script
-+move log file
-+moved to new location
-+try to close
-+closed
-+complete processing file:///media/disk/Openoffice-BUILDS/UBERCWS/vbasupportdev300/sc/source/ui/vba/testvba/TestDocuments/VariantTest.xls
-+processing file:///media/disk/Openoffice-BUILDS/UBERCWS/vbasupportdev300/sc/source/ui/vba/testvba/TestDocuments/Window.xls
-+try to get xDoc file:///media/disk/Openoffice-BUILDS/UBERCWS/vbasupportdev300/sc/source/ui/vba/testvba/TestDocuments/Window.xls
-+got xDoc
-+try to get the ScriptProvider
-+get the ScriptProvider
-+try to get the Script
-+get the Script
-+move log file
-+moved to new location
-+try to close
-+closed
-+complete processing file:///media/disk/Openoffice-BUILDS/UBERCWS/vbasupportdev300/sc/source/ui/vba/testvba/TestDocuments/Window.xls
-+analyseCmd = perl /media/disk/Openoffice-BUILDS/UBERCWS/vbasupportdev300/sc/source/ui/vba/testvba/testResults.pl /media/disk/Openoffice-BUILDS/UBERCWS/vbasupportdev300/sc/source/ui/vba/testvba/Logs /media/disk/Openoffice-BUILDS/UBERCWS/vbasupportdev300/sc/source/ui/vba/testvba/TestDocuments/logs/unix
-+logdir /media/disk/Openoffice-BUILDS/UBERCWS/vbasupportdev300/sc/source/ui/vba/testvba/Logs
-+testlogdir /media/disk/Openoffice-BUILDS/UBERCWS/vbasupportdev300/sc/source/ui/vba/testvba/TestDocuments/logs/unix
-+processing /media/disk/Openoffice-BUILDS/UBERCWS/vbasupportdev300/sc/source/ui/vba/testvba/TestDocuments/logs/unix/CalcFont.log /media/disk/Openoffice-BUILDS/UBERCWS/vbasupportdev300/sc/source/ui/vba/testvba/Logs/CalcFont.log
-+processing /media/disk/Openoffice-BUILDS/UBERCWS/vbasupportdev300/sc/source/ui/vba/testvba/TestDocuments/logs/unix/TestCalc_Rangetest2.log /media/disk/Openoffice-BUILDS/UBERCWS/vbasupportdev300/sc/source/ui/vba/testvba/Logs/TestCalc_Rangetest2.log
-+processing /media/disk/Openoffice-BUILDS/UBERCWS/vbasupportdev300/sc/source/ui/vba/testvba/TestDocuments/logs/unix/PageBreaks.log /media/disk/Openoffice-BUILDS/UBERCWS/vbasupportdev300/sc/source/ui/vba/testvba/Logs/PageBreaks.log
-+processing /media/disk/Openoffice-BUILDS/UBERCWS/vbasupportdev300/sc/source/ui/vba/testvba/TestDocuments/logs/unix/stringplusdouble.log /media/disk/Openoffice-BUILDS/UBERCWS/vbasupportdev300/sc/source/ui/vba/testvba/Logs/stringplusdouble.log
-+processing /media/disk/Openoffice-BUILDS/UBERCWS/vbasupportdev300/sc/source/ui/vba/testvba/TestDocuments/logs/unix/Window.log /media/disk/Openoffice-BUILDS/UBERCWS/vbasupportdev300/sc/source/ui/vba/testvba/Logs/Window.log
-+processing /media/disk/Openoffice-BUILDS/UBERCWS/vbasupportdev300/sc/source/ui/vba/testvba/TestDocuments/logs/unix/partition.log /media/disk/Openoffice-BUILDS/UBERCWS/vbasupportdev300/sc/source/ui/vba/testvba/Logs/partition.log
-+processing /media/disk/Openoffice-BUILDS/UBERCWS/vbasupportdev300/sc/source/ui/vba/testvba/TestDocuments/logs/unix/datevalue.log /media/disk/Openoffice-BUILDS/UBERCWS/vbasupportdev300/sc/source/ui/vba/testvba/Logs/datevalue.log
-+processing /media/disk/Openoffice-BUILDS/UBERCWS/vbasupportdev300/sc/source/ui/vba/testvba/TestDocuments/logs/unix/replace.log /media/disk/Openoffice-BUILDS/UBERCWS/vbasupportdev300/sc/source/ui/vba/testvba/Logs/replace.log
-+processing /media/disk/Openoffice-BUILDS/UBERCWS/vbasupportdev300/sc/source/ui/vba/testvba/TestDocuments/logs/unix/StrConv-test.log /media/disk/Openoffice-BUILDS/UBERCWS/vbasupportdev300/sc/source/ui/vba/testvba/Logs/StrConv-test.log
-+processing /media/disk/Openoffice-BUILDS/UBERCWS/vbasupportdev300/sc/source/ui/vba/testvba/TestDocuments/logs/unix/Template.log /media/disk/Openoffice-BUILDS/UBERCWS/vbasupportdev300/sc/source/ui/vba/testvba/Logs/Template.log
-+processing /media/disk/Openoffice-BUILDS/UBERCWS/vbasupportdev300/sc/source/ui/vba/testvba/TestDocuments/logs/unix/dateserial.log /media/disk/Openoffice-BUILDS/UBERCWS/vbasupportdev300/sc/source/ui/vba/testvba/Logs/dateserial.log
-+processing /media/disk/Openoffice-BUILDS/UBERCWS/vbasupportdev300/sc/source/ui/vba/testvba/TestDocuments/logs/unix/AutoFilter.log /media/disk/Openoffice-BUILDS/UBERCWS/vbasupportdev300/sc/source/ui/vba/testvba/Logs/AutoFilter.log
-+processing /media/disk/Openoffice-BUILDS/UBERCWS/vbasupportdev300/sc/source/ui/vba/testvba/TestDocuments/logs/unix/Ranges-2.log /media/disk/Openoffice-BUILDS/UBERCWS/vbasupportdev300/sc/source/ui/vba/testvba/Logs/Ranges-2.log
-+processing /media/disk/Openoffice-BUILDS/UBERCWS/vbasupportdev300/sc/source/ui/vba/testvba/TestDocuments/logs/unix/TestCalc_Rangetest.log /media/disk/Openoffice-BUILDS/UBERCWS/vbasupportdev300/sc/source/ui/vba/testvba/Logs/TestCalc_Rangetest.log
-+processing /media/disk/Openoffice-BUILDS/UBERCWS/vbasupportdev300/sc/source/ui/vba/testvba/TestDocuments/logs/unix/Ranges-3.log /media/disk/Openoffice-BUILDS/UBERCWS/vbasupportdev300/sc/source/ui/vba/testvba/Logs/Ranges-3.log
-+processing /media/disk/Openoffice-BUILDS/UBERCWS/vbasupportdev300/sc/source/ui/vba/testvba/TestDocuments/logs/unix/Ranges.log /media/disk/Openoffice-BUILDS/UBERCWS/vbasupportdev300/sc/source/ui/vba/testvba/Logs/Ranges.log
-+processing /media/disk/Openoffice-BUILDS/UBERCWS/vbasupportdev300/sc/source/ui/vba/testvba/TestDocuments/logs/unix/Shapes.log /media/disk/Openoffice-BUILDS/UBERCWS/vbasupportdev300/sc/source/ui/vba/testvba/Logs/Shapes.log
-+processing /media/disk/Openoffice-BUILDS/UBERCWS/vbasupportdev300/sc/source/ui/vba/testvba/TestDocuments/logs/unix/TestAddress.log /media/disk/Openoffice-BUILDS/UBERCWS/vbasupportdev300/sc/source/ui/vba/testvba/Logs/TestAddress.log
-+processing /media/disk/Openoffice-BUILDS/UBERCWS/vbasupportdev300/sc/source/ui/vba/testvba/TestDocuments/logs/unix/format.log /media/disk/Openoffice-BUILDS/UBERCWS/vbasupportdev300/sc/source/ui/vba/testvba/Logs/format.log
-+processing /media/disk/Openoffice-BUILDS/UBERCWS/vbasupportdev300/sc/source/ui/vba/testvba/TestDocuments/logs/unix/bytearraystring.log /media/disk/Openoffice-BUILDS/UBERCWS/vbasupportdev300/sc/source/ui/vba/testvba/Logs/bytearraystring.log
-+processing /media/disk/Openoffice-BUILDS/UBERCWS/vbasupportdev300/sc/source/ui/vba/testvba/TestDocuments/logs/unix/window2.log /media/disk/Openoffice-BUILDS/UBERCWS/vbasupportdev300/sc/source/ui/vba/testvba/Logs/window2.log
-+processing /media/disk/Openoffice-BUILDS/UBERCWS/vbasupportdev300/sc/source/ui/vba/testvba/TestDocuments/logs/unix/MiscRangeTests.log /media/disk/Openoffice-BUILDS/UBERCWS/vbasupportdev300/sc/source/ui/vba/testvba/Logs/MiscRangeTests.log
-+processing /media/disk/Openoffice-BUILDS/UBERCWS/vbasupportdev300/sc/source/ui/vba/testvba/TestDocuments/logs/unix/pagesetup.log /media/disk/Openoffice-BUILDS/UBERCWS/vbasupportdev300/sc/source/ui/vba/testvba/Logs/pagesetup.log
-+processing /media/disk/Openoffice-BUILDS/UBERCWS/vbasupportdev300/sc/source/ui/vba/testvba/TestDocuments/logs/unix/range-4.log /media/disk/Openoffice-BUILDS/UBERCWS/vbasupportdev300/sc/source/ui/vba/testvba/Logs/range-4.log
-+processing /media/disk/Openoffice-BUILDS/UBERCWS/vbasupportdev300/sc/source/ui/vba/testvba/TestDocuments/logs/unix/MiscOperatorTests.log /media/disk/Openoffice-BUILDS/UBERCWS/vbasupportdev300/sc/source/ui/vba/testvba/Logs/MiscOperatorTests.log
-+processing /media/disk/Openoffice-BUILDS/UBERCWS/vbasupportdev300/sc/source/ui/vba/testvba/TestDocuments/logs/unix/TestIntersection.log /media/disk/Openoffice-BUILDS/UBERCWS/vbasupportdev300/sc/source/ui/vba/testvba/Logs/TestIntersection.log
-+processing /media/disk/Openoffice-BUILDS/UBERCWS/vbasupportdev300/sc/source/ui/vba/testvba/TestDocuments/logs/unix/TestUnion.log /media/disk/Openoffice-BUILDS/UBERCWS/vbasupportdev300/sc/source/ui/vba/testvba/Logs/TestUnion.log
-+processing /media/disk/Openoffice-BUILDS/UBERCWS/vbasupportdev300/sc/source/ui/vba/testvba/TestDocuments/logs/unix/VariantTest.log /media/disk/Openoffice-BUILDS/UBERCWS/vbasupportdev300/sc/source/ui/vba/testvba/Logs/VariantTest.log
-+skipped 1 test-cases(s)
-+compared 27 test-case documents
-+ 27 tests passedTests
Index: sc/source/ui/vba/testvba/testvba.cxx
===================================================================
--- sc/source/ui/vba/testvba/testvba.cxx (revision 276159)
More information about the ooo-build-commit
mailing list