public inbox for frysk@sourceware.org
 help / color / mirror / Atom feed
* funit-child-alias?
@ 2006-10-03 18:07 Stepan Kasal
  2006-10-10 19:16 ` funit-child-alias? Andrew Cagney
  0 siblings, 1 reply; 7+ messages in thread
From: Stepan Kasal @ 2006-10-03 18:07 UTC (permalink / raw)
  To: frysk

Hello,
  frysk-core/Makefile.am mentiones funit-child-alias but there is no
source for that test.  Is funit-child-alias.c available somewhere?
Or is it supposed to work?

Or can I comment that out until funit-child-alias arrives?
Or even remove from Makefile.am?

Thanks,
	Stepan

^ permalink raw reply	[flat|nested] 7+ messages in thread

* Re: funit-child-alias?
  2006-10-03 18:07 funit-child-alias? Stepan Kasal
@ 2006-10-10 19:16 ` Andrew Cagney
  2006-10-11 15:46   ` funit-child-alias? Stepan Kasal
  0 siblings, 1 reply; 7+ messages in thread
From: Andrew Cagney @ 2006-10-10 19:16 UTC (permalink / raw)
  To: frysk

Stepan,
It is a copy of the program funit-child; it is used by the exec tests - 
funit-child exec's funit-child-alias.
Andrew

Stepan Kasal wrote:
> Hello,
>   frysk-core/Makefile.am mentiones funit-child-alias but there is no
> source for that test.  Is funit-child-alias.c available somewhere?
> Or is it supposed to work?
>
> Or can I comment that out until funit-child-alias arrives?
> Or even remove from Makefile.am?
>
> Thanks,
> 	Stepan
>   

^ permalink raw reply	[flat|nested] 7+ messages in thread

* Re: funit-child-alias?
  2006-10-10 19:16 ` funit-child-alias? Andrew Cagney
@ 2006-10-11 15:46   ` Stepan Kasal
  2006-10-11 15:50     ` funit-child-alias? Stepan Kasal
  0 siblings, 1 reply; 7+ messages in thread
From: Stepan Kasal @ 2006-10-11 15:46 UTC (permalink / raw)
  To: frysk

Hello,

On Tue, Oct 10, 2006 at 03:16:28PM -0400, Andrew Cagney wrote:
> It is a copy of the program funit-child; it is used by the exec tests - 
> funit-child exec's funit-child-alias.

I noticed that funit-child uses -pthread, while funit-child-alias
uses -lpthread.  Is the difference intentional?

Have a nice day,
	Stepan

^ permalink raw reply	[flat|nested] 7+ messages in thread

* Re: funit-child-alias?
  2006-10-11 15:46   ` funit-child-alias? Stepan Kasal
@ 2006-10-11 15:50     ` Stepan Kasal
  2006-10-11 16:10       ` funit-child-alias? Andrew Cagney
  0 siblings, 1 reply; 7+ messages in thread
From: Stepan Kasal @ 2006-10-11 15:50 UTC (permalink / raw)
  To: frysk

Hello again,

> On Tue, Oct 10, 2006 at 03:16:28PM -0400, Andrew Cagney wrote:
> > It is a copy of the program funit-child; it is used by the exec tests - 
> > funit-child exec's funit-child-alias.
> 
> I noticed that funit-child uses -pthread, while funit-child-alias
> uses -lpthread.  Is the difference intentional?

sorry, it's the other way round:
funit-child links with -lpthread, while
funit-child-alias links with -pthread

Is this the intended difference between the two?

Stepan

^ permalink raw reply	[flat|nested] 7+ messages in thread

* Re: funit-child-alias?
  2006-10-11 15:50     ` funit-child-alias? Stepan Kasal
@ 2006-10-11 16:10       ` Andrew Cagney
  2006-10-11 17:11         ` funit-child-alias? Stepan Kasal
  0 siblings, 1 reply; 7+ messages in thread
From: Andrew Cagney @ 2006-10-11 16:10 UTC (permalink / raw)
  To: frysk

Stepan,

I'd doubt that the difference is intentional.  If I were you I'd just 
make the two consistent, using the politically correct flag :-)

Andrew

Stepan Kasal wrote:
> Hello again,
>
>   
>> On Tue, Oct 10, 2006 at 03:16:28PM -0400, Andrew Cagney wrote:
>>     
>>> It is a copy of the program funit-child; it is used by the exec tests - 
>>> funit-child exec's funit-child-alias.
>>>       
>> I noticed that funit-child uses -pthread, while funit-child-alias
>> uses -lpthread.  Is the difference intentional?
>>     
>
> sorry, it's the other way round:
> funit-child links with -lpthread, while
> funit-child-alias links with -pthread
>
> Is this the intended difference between the two?
>
> Stepan
>   

^ permalink raw reply	[flat|nested] 7+ messages in thread

* Re: funit-child-alias?
  2006-10-11 16:10       ` funit-child-alias? Andrew Cagney
@ 2006-10-11 17:11         ` Stepan Kasal
  2006-10-12 12:41           ` funit-child-alias? Andrew Cagney
  0 siblings, 1 reply; 7+ messages in thread
From: Stepan Kasal @ 2006-10-11 17:11 UTC (permalink / raw)
  To: frysk

Hello,

On Wed, Oct 11, 2006 at 12:10:28PM -0400, Andrew Cagney wrote:
> I'd doubt that the difference is intentional. [...]

OK, then I'm tempted to di this:

# For TestExec.java
pkglibexec_PROGRAMS += frysk/pkglibexecdir/funit-child-alias
frysk_pkglibexecdir_funit_child_alias_SOURCES =
frysk/pkglibexecdir/funit-child-alias: frysk/pkglibexecdir/funit-child
	cp -p frysk/pkglibexecdir/funit-child $@

if DO_ARCH32_TEST
pkglibexec_arch32_PROGRAMS +=
frysk/pkglibexecdir/arch32/funit-child-alias
frysk_pkglibexecdir_arch32_funit_child_alias_SOURCES =
frysk/pkglibexecdir/arch32/funit-child-alias: frysk/pkglibexecdir/arch32/funit-child
	cp -p frysk/pkglibexecdir/funit-child $@
endif

Am I missing something?

Stepan

^ permalink raw reply	[flat|nested] 7+ messages in thread

* Re: funit-child-alias?
  2006-10-11 17:11         ` funit-child-alias? Stepan Kasal
@ 2006-10-12 12:41           ` Andrew Cagney
  0 siblings, 0 replies; 7+ messages in thread
From: Andrew Cagney @ 2006-10-12 12:41 UTC (permalink / raw)
  To: frysk

Anything missing?  I don't think so, the tests still run right :-)

Andrew

Stepan Kasal wrote:
> Hello,
>
> On Wed, Oct 11, 2006 at 12:10:28PM -0400, Andrew Cagney wrote:
>   
>> I'd doubt that the difference is intentional. [...]
>>     
>
> OK, then I'm tempted to di this:
>
> # For TestExec.java
> pkglibexec_PROGRAMS += frysk/pkglibexecdir/funit-child-alias
> frysk_pkglibexecdir_funit_child_alias_SOURCES =
> frysk/pkglibexecdir/funit-child-alias: frysk/pkglibexecdir/funit-child
> 	cp -p frysk/pkglibexecdir/funit-child $@
>
> if DO_ARCH32_TEST
> pkglibexec_arch32_PROGRAMS +=
> frysk/pkglibexecdir/arch32/funit-child-alias
> frysk_pkglibexecdir_arch32_funit_child_alias_SOURCES =
> frysk/pkglibexecdir/arch32/funit-child-alias: frysk/pkglibexecdir/arch32/funit-child
> 	cp -p frysk/pkglibexecdir/funit-child $@
> endif
>
> Am I missing something?
>
> Stepan
>   

^ permalink raw reply	[flat|nested] 7+ messages in thread

end of thread, other threads:[~2006-10-12 12:41 UTC | newest]

Thread overview: 7+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2006-10-03 18:07 funit-child-alias? Stepan Kasal
2006-10-10 19:16 ` funit-child-alias? Andrew Cagney
2006-10-11 15:46   ` funit-child-alias? Stepan Kasal
2006-10-11 15:50     ` funit-child-alias? Stepan Kasal
2006-10-11 16:10       ` funit-child-alias? Andrew Cagney
2006-10-11 17:11         ` funit-child-alias? Stepan Kasal
2006-10-12 12:41           ` funit-child-alias? Andrew Cagney

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).