List Info

Thread: Some results of automated tests (German localized)




Some results of automated tests (German localized)
user name
2007-02-26 12:00:36
Hi,

I run the ooo_releasetest.sh / .bat on OOo2.2.0RC1 during
the weekend.

See Issue 74868 for results. There are some warnings that
are very 
likely to occure in othere environments as well. See my
comments for the 
result files.

Tests on Linux are ok (just some warnings beacause of
missing 
localization support and warnings in "save with
password" tests because 
of a focus problem).

I had several Errors on Windows and one crash. Although I
could not 
reproduce any of those errors by manual testing, this is
odd. Windows 
tests for former releases have been without problems on my
system. So it 
was good if anybody could run those tests just to verify my
results.

André

------------------------------------------------------------
---------
To unsubscribe, e-mail: dev-unsubscribeqa.openoffice.org
For additional commands, e-mail: dev-helpqa.openoffice.org


Re: Some results of automated tests (German localized)
user name
2007-02-27 08:37:04
On 26 Feb 2007, Andre Schnabel spake thusly:

> I had several Errors on Windows and one crash. Although
I could not
> reproduce any of those errors by manual testing, this
is odd. Windows
> tests for former releases have been without problems on
my system. So
> it was good if anybody could run those tests just to
verify my
> results.

Seems like I found first error reason (b_updt.bas). Windows
doesn't like
double backslash in file path. Apply the attached patch and
rerun
b_updt.bas again. Worked for me.

-- 
Best regars,
Rail Aliev
http://{ru,tr}.openoffice.org

I hope you millionaires are having fun!  I just invested
half your life
savings in yeast!!

Index: b_upd_DatabaseTypes.inc
============================================================
=======
RCS file:
/cvs/qa/qatesttool/base/update/inc/b_upd_DatabaseTypes.inc,v

retrieving revision 1.31
diff -u -3 -b -p -u -r1.31 b_upd_DatabaseTypes.inc
--- b_upd_DatabaseTypes.inc	20 Dec 2006 13:37:29 -0000	1.31
+++ b_upd_DatabaseTypes.inc	27 Feb 2007 14:33:05 -0000
 -480,7
+480,7  endcase
 testcase tCheckHSQLDB
 
     Dim sDatasourceFileName as String
-    sDatasourceFileName = ConvertPath(gOfficePath +
"/user/work/hsqldb.odb")
+    sDatasourceFileName = ConvertPath(gOfficePath +
"user/work/hsqldb.odb")
     call fCreateHSQLDatasource(sDatasourceFileName)
     
     call fOpenDatabase(sDatasourceFileName) 


------------------------------------------------------------
---------
To unsubscribe, e-mail: dev-unsubscribeqa.openoffice.org
For additional commands, e-mail: dev-helpqa.openoffice.org
Re: Some results of automated tests (German localized)
user name
2007-02-27 08:46:45
On 27 Feb 2007, Rail Aliev verbalised:

> On 26 Feb 2007, Andre Schnabel spake thusly:
>
>> I had several Errors on Windows and one crash.
Although I could not
>> reproduce any of those errors by manual testing,
this is odd. Windows
>> tests for former releases have been without
problems on my system. So
>> it was good if anybody could run those tests just
to verify my
>> results.
>
> Seems like I found first error reason (b_updt.bas).
Windows doesn't
> like double backslash in file path. Apply the attached
patch and rerun
> b_updt.bas again. Worked for me.

Please, review my previous patch and these two.

-- 
Best regars,
Rail Aliev
http://{ru,tr}.openoffice.org

The honeymoon is over when he phones to say he'll be late
for supper and
she's already left a note that it's in the refrigerator.
		-- Bill Lawrence


Index: base/tools/dbtools.inc
============================================================
=======
RCS file: /cvs/qa/qatesttool/base/tools/dbtools.inc,v
retrieving revision 1.9
diff -u -3 -b -p -u -r1.9 dbtools.inc
--- base/tools/dbtools.inc	7 Sep 2005 19:06:58 -0000	1.9
+++ base/tools/dbtools.inc	27 Feb 2007 14:42:40 -0000
 -147,7
+147,7  function fOpenNewDataBase ( sSaveFileNam
     sleep(2)
     
     Kontext "SpeichernDlg"
-        Dateiname.setText Convertpath(gOfficePath +
"/user/work/" + sSaveFileName)    
+        Dateiname.setText Convertpath(gOfficePath +
"user/work/" + sSaveFileName)    
         Speichern.click
         sleep(1)
         

Index: graphics/level1/inc/impress/i_slidelayer.inc
============================================================
=======
RCS file:
/cvs/qa/qatesttool/graphics/level1/inc/impress/i_slidelayer.
inc,v
retrieving revision 1.10
diff -u -3 -b -p -u -r1.10 i_slidelayer.inc
--- graphics/level1/inc/impress/i_slidelayer.inc	1 Nov 2006
13:14:17 -0000	1.10
+++ graphics/level1/inc/impress/i_slidelayer.inc	27 Feb 2007
14:43:08 -0000
 -481,7
+481,7  testcase t111862
     dim i as integer
     dim sFile as string
 
-    sFile = convertPath(gOfficePath +
"/user/work/" + getTestcaseName +
".sxi")
+    sFile = convertPath(gOfficePath +
"user/work/" + getTestcaseName +
".sxi")
 
     if FileExists(sFile) then
         kill sFile


------------------------------------------------------------
---------
To unsubscribe, e-mail: dev-unsubscribeqa.openoffice.org
For additional commands, e-mail: dev-helpqa.openoffice.org
Re: Some results of automated tests (German localized)
user name
2007-02-27 17:56:25
From: Rail Aliev <railopenoffice.org>
Subject: Re: [qa-dev] Some results of automated tests
(German localized)
Date: Tue, 27 Feb 2007 17:37:04 +0300

> On 26 Feb 2007, Andre Schnabel spake thusly:
> 
> > I had several Errors on Windows and one crash.
Although I could not
> > reproduce any of those errors by manual testing,
this is odd. Windows
> > tests for former releases have been without
problems on my system. So
> > it was good if anybody could run those tests just
to verify my
> > results.
> 
> Seems like I found first error reason (b_updt.bas).
Windows doesn't like
> double backslash in file path. Apply the attached patch
and rerun
> b_updt.bas again. Worked for me.

Thanks for fixing this!!
Rail, raise as an issue and assign to msc or jsi.

How I know msc?
qa/qatesttool/base/update/b_updt.bas 
> '*  last change: $Author: msc $ $Date: 2006/10/23
08:12:01 $
...
> '* owner : marc.neumannsun.com

How I know jsi?
via IRC. 

Please add maho in Cc: section.
thanks,
-- NAKATA, Maho (mahoFreeBSD.org)

------------------------------------------------------------
---------
To unsubscribe, e-mail: dev-unsubscribeqa.openoffice.org
For additional commands, e-mail: dev-helpqa.openoffice.org


Re: Some results of automated tests (German localized)
user name
2007-02-27 18:00:06
From: Rail Aliev <railopenoffice.org>
Subject: Re: [qa-dev] Some results of automated tests
(German localized)
Date: Tue, 27 Feb 2007 17:46:45 +0300

> > Seems like I found first error reason
(b_updt.bas). Windows doesn't
> > like double backslash in file path. Apply the
attached patch and rerun
> > b_updt.bas again. Worked for me.
> 
> Please, review my previous patch and these two.

You attached patches for base/tools/dbtools.inc
and graphics/level1/inc/impress/i_slidelayer.inc
.
base/tools/dbtools.inc : owner : marc.neumannsun.com
                        last change by tbo
graphics/level1/inc/impress/i_slidelayer.inc : 
                       : owner : fredrik.haeggsun.com 

                       : last change by fredrikh

You may want to raise an issue and assign to these persons.

Thanks,
-- NAKATA, Maho (mahoFreeBSD.org)

------------------------------------------------------------
---------
To unsubscribe, e-mail: dev-unsubscribeqa.openoffice.org
For additional commands, e-mail: dev-helpqa.openoffice.org


Re: Some results of automated tests (German localized)
user name
2007-02-28 00:20:03
On 28 Feb 2007, Maho NAKATA spake thusly:

> Thanks for fixing this!!
> Rail, raise as an issue and assign to msc or jsi.

Done: i74948 

-- 
Best regars,
Rail Aliev
http://{ru,tr}.openoffice.org

A paranoid is a man who knows a little of what's going on.
		-- William S. Burroughs

------------------------------------------------------------
---------
To unsubscribe, e-mail: dev-unsubscribeqa.openoffice.org
For additional commands, e-mail: dev-helpqa.openoffice.org


[1-6]

about | contact  Other archives ( Real Estate discussion Medical topics )