List Info

Thread: QA testtools




QA testtools
user name
2006-05-23 19:20:57
>From: Uwe Altmann <uwe.altmannweb.de>
>Sent: May 23, 2006 10:49 AM
>To: macporting.openoffice.org
>Subject: Re: [mac] QA testtools
>
>Hi
>
>updated to 1.1:
>
>http://www.ooo.mynetcologne.de/Smoketests_auf_dem
_Mac-1.1de.pdf
>
Very well written and I can understand it.  It may not have
to go through
Babelfish afterall....

James M.

------------------------------------------------------------
---------
To unsubscribe, e-mail: mac-unsubscribeporting.openoffice.org
For additional commands, e-mail: mac-helpporting.openoffice.org

QA testtools
user name
2006-05-23 20:49:56
Hi James, Cedric

there is one error left in the text - it concerns the
"meta"-script
adaption on Mac. I didn't get the solution yet but I'm
working on it.

-- 
Eine schöne Zeit
Uwe

------------------------------------------------------------
---------
To unsubscribe, e-mail: mac-unsubscribeporting.openoffice.org
For additional commands, e-mail: mac-helpporting.openoffice.org

QA testtools
user name
2006-05-24 02:25:06
Uwe Altmann wrote:

>Hi James, Cedric
>
>there is one error left in the text - it concerns the
"meta"-script
>adaption on Mac. I didn't get the solution yet but I'm
working on it.
>
>  
>
What page in the document?

James M.

------------------------------------------------------------
---------
To unsubscribe, e-mail: mac-unsubscribeporting.openoffice.org
For additional commands, e-mail: mac-helpporting.openoffice.org

QA testtools
user name
2006-05-24 06:32:07
Hi James

James McKenzie schrieb:
>> there is one error left in the text - it concerns
the "meta"-script
>> adaption on Mac. I didn't get the solution yet but
I'm working on it.
>>  
>>
> What page in the document?

page 12-13, chapter "ooo_relesetests". The
script isn't running as
expected, it stops after the first test because X11-terminal
don't know
"killall" and Terminal won't run the script at
all because of a missing
X11 display setting.
-- 
Eine schöne Zeit
Uwe

------------------------------------------------------------
---------
To unsubscribe, e-mail: mac-unsubscribeporting.openoffice.org
For additional commands, e-mail: mac-helpporting.openoffice.org

QA testtools
user name
2006-05-24 06:47:00
Hi,

Le 24 mai 06 ā 08:32, Uwe Altmann a écrit :

> Hi James
>
> James McKenzie schrieb:
>>> there is one error left in the text - it
concerns the "meta"-script
>>> adaption on Mac. I didn't get the solution yet
but I'm working on  
>>> it.
>>>
>>>
>> What page in the document?
>
> page 12-13, chapter "ooo_relesetests". The
script isn't running as
> expected, it stops after the first test because
X11-terminal don't  
> know
> "killall"

Are you sure ?

ordinateur-de-eric-b:~ ericb$ type killall
killall is /usr/bin/killall
ordinateur-de-eric-b:~ ericb$

And  /usr/bin should be in a normal $PATH ...  If you
prefer, replace  
killall with  /usr/bin/killall  ?


> and Terminal won't run the script at all because of a
missing
> X11 display setting.


If I can, better use xterm than the awfull Apple Terminal.

IMHO, it would work really better than this ...Applery
called  
"Terminal" (simple, I never use it) 


Below, some tips for xterm :

1) to make xterm fonts readable :  CTRL+Right Click ->
select Huge  

2) Colors

If you want to use more efficient colors, create a file,
called "  
color.defaults ", put it in your $HOME , and write
inside what follows :

xterm-color*color0: Black
xterm-color*color1: Red
xterm-color*color2: Green
xterm-color*color3: Yellow
xterm-color*color4: Blue
xterm-color*color5: Magenta
xterm-color*color6: Cyan
xterm-color*color7: White
xterm-color*background: Black
xterm-color*foreground: Green


xterm*color0: Black
xterm*color1: Red
xterm*color2: Green
xterm*color3: Yellow
xterm*color4: Blue
xterm*color5: Magenta
xterm*color6: Cyan
xterm*color7: White
xterm*background: Black
xterm*foreground: Cyan


When done, save the changes and do :

xrdb color.defaults

and start again this xterm, choose huge fonts , and enjoy



Regards,
Eric Bachard
------------------------------------------------------------
---------
To unsubscribe, e-mail: mac-unsubscribeporting.openoffice.org
For additional commands, e-mail: mac-helpporting.openoffice.org

QA testtools
user name
2006-05-24 08:44:08
Hi Eric, *

Merci!

eric b schrieb:
> And  /usr/bin should be in a normal $PATH ...  If you
prefer, replace
> killall with  /usr/bin/killall  ?
> 
OK - one step further.

Central Error is also found:

The Statements
 if ps -p $testtoolpid > /dev/null ; then
and
 while ps -p $testtoolpid > /dev/null ;

must be
 if ps -p $testtoolpid | grep $testtoolpid > /dev/null ;
then
and
 while ps -p $testtoolpid | grep $testtoolpid > /dev/null
;

because ps *always* returns a header and so without grep
*never* is
empty, so conditons always are true  

I'll change the text.



> If I can, better use xterm than the awfull Apple
Terminal.
> 
> IMHO, it would work really better than this ...Applery
called "Terminal"
> (simple, I never use it) 

Oh, I love it.
Apple Terminal surely is more functional then X11 Term - try
just to
drag a File in a terminal window - in Terminal you get the
full path
typed, in X11-Term - nothing.
Copy and paste don't work in X11 at all...

So if you write documentation, Terminal is the better way

> 
> 
> Below, some tips for xterm :
> 
> 1) to make xterm fonts readable :  CTRL+Right Click
-> select Huge  
> 
> 2) Colors
> 
> If you want to use more efficient colors, create a
file, called "
> color.defaults ", put it in your $HOME , and
write inside what follows :
> 
> xterm-color*color0: Black
> xterm-color*color1: Red
> xterm-color*color2: Green
> xterm-color*color3: Yellow
> xterm-color*color4: Blue
> xterm-color*color5: Magenta
> xterm-color*color6: Cyan
> xterm-color*color7: White
> xterm-color*background: Black
> xterm-color*foreground: Green
> 
> 
> xterm*color0: Black
> xterm*color1: Red
> xterm*color2: Green
> xterm*color3: Yellow
> xterm*color4: Blue
> xterm*color5: Magenta
> xterm*color6: Cyan
> xterm*color7: White
> xterm*background: Black
> xterm*foreground: Cyan
> 
> 
> When done, save the changes and do :
> 
> xrdb color.defaults
> 
> and start again this xterm, choose huge fonts , and
enjoy 

I'll try this also some day. By now, it works for me as it
comes.

-- 
Eine schöne Zeit
Uwe

------------------------------------------------------------
---------
To unsubscribe, e-mail: mac-unsubscribeporting.openoffice.org
For additional commands, e-mail: mac-helpporting.openoffice.org

QA testtools
user name
2006-05-24 10:55:58
Uwe Altmann wrote:

>Hi James
>
>James McKenzie schrieb:
>  
>
>>>there is one error left in the text - it
concerns the "meta"-script
>>>adaption on Mac. I didn't get the solution yet
but I'm working on it.
>>> 
>>>
>>>      
>>>
>>What page in the document?
>>    
>>
>
>page 12-13, chapter "ooo_relesetests". The
script isn't running as
>expected, it stops after the first test because
X11-terminal don't know
>"killall" and Terminal won't run the script
at all because of a missing
>X11 display setting.
>  
>
Ok.  Do you have a fixed script?  I was going to start
running the tests
this morning, but I can wait until this evening, Phoenix
Time (yes,
those of us living in the State of Arizona, United States
have our own
time zone because we do not observe the time shift and have
not since 1972.)

James M.

------------------------------------------------------------
---------
To unsubscribe, e-mail: mac-unsubscribeporting.openoffice.org
For additional commands, e-mail: mac-helpporting.openoffice.org

QA testtools
user name
2006-05-24 13:38:20
Hi James


James McKenzie schrieb:
> Ok.  Do you have a fixed script?  

Wait for an hour or so from now. Still testing.

I was going to start running the tests
> this morning, but I can wait until this evening,
Phoenix Time (yes,
> those of us living in the State of Arizona, United
States have our own
> time zone because we do not observe the time shift and
have not since 1972.)

I know about that - we have friends in Mesa and have been
there a couple
of times (You remember the two of the last ten years where
there was a
real cold and rainy Winter in AZ - these were the two times
we have been
there
(97/98 and 02/03)
-- 
Eine schöne Zeit
Uwe

------------------------------------------------------------
---------
To unsubscribe, e-mail: mac-unsubscribeporting.openoffice.org
For additional commands, e-mail: mac-helpporting.openoffice.org

QA testtools
user name
2006-05-24 14:53:24
Hi James, Cedric

I just uploaded a new version of the pdf-document with all
necessary
instruction to get ooo_releasetests.sh running well.

http://www.ooo.mynetcologne.de/Smoketests_auf_dem
_Mac-1.2de.pdf

there is also a
  chmod a+x ooo_releasetests.sh
you must do before the script starts. Its described on page
12 together
with the other changes.
-- 
Eine schöne Zeit
Uwe

------------------------------------------------------------
---------
To unsubscribe, e-mail: mac-unsubscribeporting.openoffice.org
For additional commands, e-mail: mac-helpporting.openoffice.org

QA testtools
user name
2006-05-26 03:23:17
Uwe Altmann wrote:

>Hi James, Cedric
>
>I just uploaded a new version of the pdf-document with
all necessary
>instruction to get ooo_releasetests.sh running well.
>
>http://www.ooo.mynetcologne.de/Smoketests_auf_dem
_Mac-1.2de.pdf
>
>there is also a
>  chmod a+x ooo_releasetests.sh
>you must do before the script starts. Its described on
page 12 together
>with the other changes.
>  
>
Uwe:

I experience problems with using MacCVSClient as I keep on
receiving a
failure notification when running the checkout of the
qatesttool
module.  It may be due to something that I'm doing
improperly.  Any ideas?

James M.

------------------------------------------------------------
---------
To unsubscribe, e-mail: mac-unsubscribeporting.openoffice.org
For additional commands, e-mail: mac-helpporting.openoffice.org

[1-10] [11-15]

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