Bug#292958: gcc 3.3 on powerpc miscompiles BIND 9.3

2005-01-31 Thread Marco d'Itri
Package: gcc-3.3
Version: 3.3.5-6
Severity: normal

gcc 3.3 apparently does not compile correctly lib/dns/rbt.c from
BIND 9.3, which then will die on startup with an assertion failure.

Workarounds known to fix this:
- compiling rbt.c without -O2
- removing "inline" from rotate_left() and rotate_right()
- using gcc 3.4

Let me know if you need assistance debugging this.
I can also provide a set of BIND configuration files which can reliably
trigger the bug.

-- System Information:
Debian Release: 3.1
  APT prefers unstable
  APT policy: (500, 'unstable')
Architecture: powerpc (ppc)
Kernel: Linux 2.6.6-b50
Locale: [EMAIL PROTECTED], [EMAIL PROTECTED]

-- 
ciao,
Marco


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]



Bug#292961: g++-3.3: g++ -- vastly uninformative error message

2005-01-31 Thread Greg Kochanski
Package: g++-3.3
Version: 1:3.3.5-5
Severity: normal


Having been away from C++ for several years, I've now tried
to compile some old (circa 1999) code.
The error message

geom.c:84: parse error before ',' token

(or a dozen variants of it) are completely useless!
I note that this problem made its appearance in 2000,
and still no one has made a serious attempt to fix
the user interface.  (It seems to be from the gcc2.95 to gcc3.0
transition, related to the requirement for C++ namespaces.)

However, whatever it comes from, and doubtless my code
is incorrect to modern standards as it was written before
namespaces,  that error message is rather useless.

Here's the code:

box c_area(C xform_split &xf, C box& databox0, C box& databox1)
{
 // Next is line 84:
 C box box0inOUTin(parallelogram(inverse(xf.back), databox0).insidebox());
 C box lc(inverse_image(databox1, xf.fwd));
 return intersect(box0inOUTin, lc);
}

Now, that error message doesn't tell me if there is a
problem with the definition of the parallelogram class constructor,
the definition of  class box,   class xform_split,
the function inverse()  (or even which version of inverse!)
or whatever.


Am I the first to bring this up, or are people uninterested
in the useability of g++?

   






-- System Information:
Debian Release: 3.1
  APT prefers testing
  APT policy: (500, 'testing')
Architecture: i386 (i686)
Kernel: Linux 2.6.8-2-686
Locale: LANG=C, LC_CTYPE=C (charmap=ANSI_X3.4-1968)

Versions of packages g++-3.3 depends on:
ii  gcc-3.3 1:3.3.5-5The GNU C compiler
ii  gcc-3.3-base1:3.3.5-5The GNU Compiler Collection (base 
ii  libc6   2.3.2.ds1-20 GNU C Library: Shared libraries an
ii  libstdc++5-3.3-dev  1:3.3.5-5The GNU Standard C++ Library v3 (d

-- no debconf information


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]



[Bug java/9157] SEGV on bad java source

2005-01-31 Thread rmathew at gcc dot gnu dot org

--- Additional Comments From rmathew at gcc dot gnu dot org  2005-01-31 
14:45 ---
Proposed patch here:

http://gcc.gnu.org/ml/java-patches/2005-q1/msg00245.html

-- 
   What|Removed |Added

   Keywords||patch


http://gcc.gnu.org/bugzilla/show_bug.cgi?id=9157

--- You are receiving this mail because: ---
You are on the CC list for the bug, or are watching someone who is.


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]



Bug#292961: g++-3.3: g++ -- vastly uninformative error message

2005-01-31 Thread Falk Hueffner
Greg Kochanski <[EMAIL PROTECTED]> writes:

> Here's the code:
>
> box c_area(C xform_split &xf, C box& databox0, C box& databox1)
> {
>  // Next is line 84:
>  C box box0inOUTin(parallelogram(inverse(xf.back), databox0).insidebox());
>  C box lc(inverse_image(databox1, xf.fwd));
>  return intersect(box0inOUTin, lc);
> }

That doesn't even remotely look like valid code in any C++ standard.
Please provide a *complete* test case.

-- 
Falk


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]



Bug#292961: g++-3.3: g++ -- vastly uninformative error message

2005-01-31 Thread Greg Kochanski
The line you are wanting is
#define C const
You may assume that
box, xform_split, and parallelogram are classes,
that insidebox() is a member function of class parallelogram,
and that inverse_image() and intersect() are functions.
With those additions, it becomes quite reasonable C++ code.
In fact, I've now made it compile and execute,
but that's not the point.
The point is not whether the code was correct,
the point is that the error message was not useful.
I don't want to point out the obvious, but the entire function
of a C++ compiler is to help people write computer programs,
and since people make mistakes (or at least I do),
part of a compiler's job is to help the programmer correct
his or her errors.Providing helpful error messages
is a good way to do this.


The functioning code is as follows:
#define C const
box c_area(C xform_split &xf, C box& databox0, C box& databox1)
{
C parallelogram inv_image_db0(inverse(xf.back), databox0);
C box box0inOUTin(inv_image_db0.insidebox());
C box lc(inverse_image(databox1, xf.fwd));
return intersect(box0inOUTin, lc);
}
The change was in creating a temporary variable to hold
the parallelogram.   Why that fixed it, I don't know,
but I do know that the compiler's error message didn't
help me very much.

Falk Hueffner wrote:
Greg Kochanski <[EMAIL PROTECTED]> writes:

Here's the code:
box c_area(C xform_split &xf, C box& databox0, C box& databox1)
{
// Next is line 84:
C box box0inOUTin(parallelogram(inverse(xf.back), databox0).insidebox());
C box lc(inverse_image(databox1, xf.fwd));
return intersect(box0inOUTin, lc);
}

That doesn't even remotely look like valid code in any C++ standard.
Please provide a *complete* test case.

--
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]


Bug#293050: /usr/lib/libgcj.la: Wrong libdir in *.la file

2005-01-31 Thread Goswin Brederlow
Package: libgcj4-dev
Version: 1:3.3.5-7
Severity: important
File: /usr/lib/libgcj.la
Justification: Causes related packages to miscompile

Hi,

libgcj.la contains

libdir='/usr/lib64'

instead of

libdir='/usr/lib'

resulting in libtool using rpath and dpkg-shlibdeps to not find
required libs (and subsequently missing Depends).

The same is broken in lib-gnu-awt-xlib.la, lib-org-w3c-dom.la and
lib-org-xml-sax.la.

MfG
Goswin



-- System Information:
Debian Release: 3.1
Architecture: amd64 (x86_64)
Kernel: Linux 2.6.8-frosties-1
Locale: LANG=en_US, LC_CTYPE=en_US

Versions of packages libgcj4-dev depends on:
ii  gcj-3.31:3.3.5-7 The GNU compiler for Java(TM)
ii  libc6-dev  2.3.2.ds1-19.0.0.2.pure64 GNU C Library: Development Librari
ii  libgcj41:3.3.5-7 Java runtime library for use with 
ii  libgcj4-awt1:3.3.5-7 AWT peer runtime libraries for use
ii  libgcj4-common 1:3.3.5-7 Java runtime library for use with 
ii  zlib1g-dev 1:1.2.2-4 compression library - development

-- no debconf information


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]



Bug#292961: g++-3.3: g++ -- vastly uninformative error message

2005-01-31 Thread Falk Hueffner
Greg Kochanski <[EMAIL PROTECTED]> writes:

> You may assume that box, xform_split, and parallelogram are classes,
> that insidebox() is a member function of class parallelogram, and
> that inverse_image() and intersect() are functions.

I'm not willing to guess the test case, since my experience has taught
me that just too often there's some subtle point that is missed that
way. Please do provide a complete test case.

-- 
Falk


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]



Bug#292961: g++-3.3: g++ -- vastly uninformative error message

2005-01-31 Thread Greg Kochanski
Why is the test case important?
I think (though I may be wrong) that
you're missing the main point of the bug report.
The main point is simply that the error message is
uninformative.   Nearly useless.
Whatever the compiler *thought* it was parsing is
hidden, and that's the problem -- it provides no
information to the user.
I don't want to be side-tracked into a discussion of
obscure logic for deciding which of many overloaded
functions the compiler is choosing.   This is a bug
report on something that is essentially a user-interface
issue.
The user interface of a compiler is the language (on the input side)
and the error messages (as output)."Parse error after ',' token."
is simply not much of a user interface.
If I spend a couple of hours boiling down 20 pages of code to
a small test case, are you going to think about the user interface
issues?
Falk Hueffner wrote:
Greg Kochanski <[EMAIL PROTECTED]> writes:

You may assume that box, xform_split, and parallelogram are classes,
that insidebox() is a member function of class parallelogram, and
that inverse_image() and intersect() are functions.

I'm not willing to guess the test case, since my experience has taught
me that just too often there's some subtle point that is missed that
way. Please do provide a complete test case.

--
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]


Bug#292961: g++-3.3: g++ -- vastly uninformative error message

2005-01-31 Thread Falk Hueffner
Greg Kochanski <[EMAIL PROTECTED]> writes:

> Why is the test case important?

Because I cannot reproduce the problem without it.

> I think (though I may be wrong) that you're missing the main point
> of the bug report.
>
> The main point is simply that the error message is uninformative.
> Nearly useless.

I can see that. However without a test case it is not clear to me
whether, or how, g++ could have done better. So I need a test case
plus an example error message that you would have liked to see.

-- 
Falk


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]



Bug#292961: g++-3.3: g++ -- vastly uninformative error message

2005-01-31 Thread Greg Kochanski
OK.  I'll spend an hour or so boiling down a test case.
Falk Hueffner wrote:
I can see that. However without a test case it is not clear to me
whether, or how, g++ could have done better. So I need a test case
plus an example error message that you would have liked to see.

--
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]


Bug#293076: g++-3.3 uninformative error when base class missing

2005-01-31 Thread Greg Kochanski
Package: g++-3.3
Version: 1:3.3.5-5
Severity: normal


In the following program, the base class is missing.
G++ gives a wimpy error message:

bug.c:3: error: parse error before `{' token

It could do much better.   Syntactically, there aren't a lot of
options for 'z'.   A better error message might be something like

bug.c:3: error: parse error between ':' and '{'.   Expecting that "z" would be 
the name of a class.


Here's the code:

class y: z {
public:
};



-- System Information:
Debian Release: 3.1
  APT prefers testing
  APT policy: (500, 'testing')
Architecture: i386 (i686)
Kernel: Linux 2.6.8-2-686
Locale: LANG=C, LC_CTYPE=C (charmap=ANSI_X3.4-1968)

Versions of packages g++-3.3 depends on:
ii  gcc-3.3 1:3.3.5-5The GNU C compiler
ii  gcc-3.3-base1:3.3.5-5The GNU Compiler Collection (base 
ii  libc6   2.3.2.ds1-20 GNU C Library: Shared libraries an
ii  libstdc++5-3.3-dev  1:3.3.5-5The GNU Standard C++ Library v3 (d

-- no debconf information


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]



Bug#292961: g++-3.3: g++ -- vastly uninformative error message

2005-01-31 Thread Greg Kochanski
Falk Hueffner wrote:
Greg Kochanski <[EMAIL PROTECTED]> writes:

Why is the test case important?

Because I cannot reproduce the problem without it.

OK. Here is a condensed version.
$ g++ -c bug.c
bug.c: In function `void c_area(const xform_split&, const box&, const 
box&)':
bug.c:31: error: parse error before `,' token
$

Here's the code:
class ltransform {
public:
};
class   box {
public:
box insidebox() const;
};
class parallelogram {
public:
parallelogram(const ltransform& b, const box& x);
box insidebox() const;
};
box inverse_image(const box& db1, const ltransform& fwd);

struct xform_split  {
ltransform fwd;
ltransform back;
};

void c_area(const xform_split &xf, const box& databox0, const box& databox1)
{
 const box box0inOUTin(
parallelogram(inverse(xf.back), databox0).insidebox()); //line31
 const box lc(inverse_image(databox1, xf.fwd));
}

--
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]


Processed: Re: Bug#293076: g++-3.3 uninformative error when base class missing

2005-01-31 Thread Debian Bug Tracking System
Processing commands for [EMAIL PROTECTED]:

> tags 293076 + fixed-upstream
Bug#293076: g++-3.3 uninformative error when base class missing
There were no tags set.
Tags added: fixed-upstream

> tags 293076 + upstream
Bug#293076: g++-3.3 uninformative error when base class missing
Tags were: fixed-upstream
Tags added: upstream

> retitle 293076 [fixed in 3.4] g++-3.3 uninformative error when base class 
> missing
Bug#293076: g++-3.3 uninformative error when base class missing
Changed Bug title.

> thanks
Stopping processing here.

Please contact me if you need assistance.

Debian bug tracking system administrator
(administrator, Debian Bugs database)


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]



Bug#293076: g++-3.3 uninformative error when base class missing

2005-01-31 Thread Matthias Klose
tags 293076 + fixed-upstream
tags 293076 + upstream
retitle 293076 [fixed in 3.4] g++-3.3 uninformative error when base class 
missing
thanks

$ g++-3.4 -c bug-293076.cc
bug-293076.cc:1: error: expected class-name before '{' token

Greg Kochanski writes:
> Package: g++-3.3
> Version: 1:3.3.5-5
> Severity: normal
> 
> 
> In the following program, the base class is missing.
> G++ gives a wimpy error message:
> 
> bug.c:3: error: parse error before `{' token
> 
> It could do much better.   Syntactically, there aren't a lot of
> options for 'z'.   A better error message might be something like
> 
> bug.c:3: error: parse error between ':' and '{'.   Expecting that "z" would 
> be the name of a class.
> 
> 
> Here's the code:
> 
> class y: z {
>   public:
>   };
> 
> 
> 
> -- System Information:
> Debian Release: 3.1
>   APT prefers testing
>   APT policy: (500, 'testing')
> Architecture: i386 (i686)
> Kernel: Linux 2.6.8-2-686
> Locale: LANG=C, LC_CTYPE=C (charmap=ANSI_X3.4-1968)
> 
> Versions of packages g++-3.3 depends on:
> ii  gcc-3.3 1:3.3.5-5The GNU C compiler
> ii  gcc-3.3-base1:3.3.5-5The GNU Compiler Collection 
> (base 
> ii  libc6   2.3.2.ds1-20 GNU C Library: Shared libraries 
> an
> ii  libstdc++5-3.3-dev  1:3.3.5-5The GNU Standard C++ Library v3 
> (d
> 
> -- no debconf information
> 
> 
> -- 
> To UNSUBSCRIBE, email to [EMAIL PROTECTED]
> with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]



Processed: Re: Bug#292961: g++-3.3: g++ -- vastly uninformative error message

2005-01-31 Thread Debian Bug Tracking System
Processing commands for [EMAIL PROTECTED]:

> tags 292961 + upstream
Bug#292961: g++-3.3: g++ -- vastly uninformative error message
There were no tags set.
Tags added: upstream

> tags 292961 + fixed-upstream
Bug#292961: g++-3.3: g++ -- vastly uninformative error message
Tags were: upstream
Tags added: fixed-upstream

> retitle 292961 [fixed in 3.4] g++-3.3: vastly uninformative error message
Bug#292961: g++-3.3: g++ -- vastly uninformative error message
Changed Bug title.

> thanks
Stopping processing here.

Please contact me if you need assistance.

Debian bug tracking system administrator
(administrator, Debian Bugs database)


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]



Processed: Re: Bug#293076: g++-3.3 uninformative error when base class missing

2005-01-31 Thread Debian Bug Tracking System
Processing commands for [EMAIL PROTECTED]:

> tags 293076 + upstream
Bug#293076: [fixed in 3.4] g++-3.3 uninformative error when base class missing
Tags were: upstream fixed-upstream
Tags added: upstream

> tags 293076 + fixed-upstream
Bug#293076: [fixed in 3.4] g++-3.3 uninformative error when base class missing
Tags were: upstream fixed-upstream
Tags added: fixed-upstream

> retitle 293076 [fixed in 3.4] g++-3.3: uninformative error when base class 
> missing
Bug#293076: [fixed in 3.4] g++-3.3 uninformative error when base class missing
Changed Bug title.

> thanks
Stopping processing here.

Please contact me if you need assistance.

Debian bug tracking system administrator
(administrator, Debian Bugs database)


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]



Bug#292961: g++-3.3: g++ -- vastly uninformative error message

2005-01-31 Thread Falk Hueffner
tags 292961 + upstream
tags 292961 + fixed-upstream
retitle 292961 [fixed in 3.4] g++-3.3: vastly uninformative error message
thanks

Greg Kochanski <[EMAIL PROTECTED]> writes:

> OK. Here is a condensed version.
>
> $ g++ -c bug.c
> bug.c: In function `void c_area(const xform_split&, const box&, const
> box&)':
> bug.c:31: error: parse error before `,' token
> $

g++ 3.4 says:

test.cc: In function `void c_area(const xform_split&, const box&, const box&)':
test.cc:33: error: `inverse' undeclared (first use this function)
test.cc:33: error: (Each undeclared identifier is reported only once for each 
function it appears in.)

Which seems like an acceptable error message. Unfortunately, it is
rather likely that this gets fixed in 3.3, too.

-- 
Falk


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]



Bug#293076: g++-3.3 uninformative error when base class missing

2005-01-31 Thread Falk Hueffner
tags 293076 + upstream
tags 293076 + fixed-upstream
retitle 293076 [fixed in 3.4] g++-3.3: uninformative error when base class 
missing
thanks

Greg Kochanski <[EMAIL PROTECTED]> writes:

> In the following program, the base class is missing.
> G++ gives a wimpy error message:
>
> bug.c:3: error: parse error before `{' token
>
> It could do much better.   Syntactically, there aren't a lot of
> options for 'z'.   A better error message might be something like
>
> bug.c:3: error: parse error between ':' and '{'.   Expecting that "z" would 
> be the name of a class.
>
>
> Here's the code:
>
> class y: z {
>   public:
>   };

g++ 3.4 says:

test.cc:2: error: expected class-name before '{' token

which seems OK.

-- 
Falk


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]



Results for 3.3.5 (Debian 1:3.3.5-7) testsuite on hppa-linux

2005-01-31 Thread Matthias Klose
LAST_UPDATED: Thu Jan 27 21:23:18 UTC 2005

Native configuration is hppa-linux (sarti)

=== gpc tests ===


Running target any

=== gpc Summary ===

# of tests3910
# of expected passes  3905
# of unsupported tests5
/build/buildd/gcc-3.3-3.3.5/build/gcc/xgpc version 20040516, based on gcc-3.3.5 
(Debian 1:3.3.5-7)

=== g++ tests ===


Running target unix
FAIL: g++.dg/compat/break/bitfield7 x_tst.o compile
UNRESOLVED: g++.dg/compat/break/bitfield7 x_tst.o-y_tst.o link 
UNRESOLVED: g++.dg/compat/break/bitfield7 x_tst.o-y_tst.o execute 
XPASS: g++.other/init5.C  Execution test

=== g++ Summary ===

# of expected passes8186
# of unexpected failures1
# of unexpected successes   1
# of expected failures  98
# of unresolved testcases   2
# of untested testcases 23
# of unsupported tests  30
/build/buildd/gcc-3.3-3.3.5/build/gcc/testsuite/../g++ version 3.3.5 (Debian 
1:3.3.5-7)

=== g77 tests ===


Running target unix

=== g77 Summary ===

# of expected passes1720
# of unsupported tests  8
/build/buildd/gcc-3.3-3.3.5/build/gcc/testsuite/../g77 version 3.3.5 (Debian 
1:3.3.5-7)

=== gcc tests ===


Running target unix
FAIL: gcc.dg/duff-2.c (test for excess errors)

=== gcc Summary ===

# of expected passes21189
# of unexpected failures1
# of expected failures  67
# of unsupported tests  199
/build/buildd/gcc-3.3-3.3.5/build/gcc/xgcc version 3.3.5 (Debian 1:3.3.5-7)

=== objc tests ===


Running target unix

=== objc Summary ===

# of expected passes1166
/build/buildd/gcc-3.3-3.3.5/build/gcc/xgcc version 3.3.5 (Debian 1:3.3.5-7)

=== treelang tests ===


Running target unix

=== treelang Summary ===

# of expected passes1
=== libjava tests ===


Running target unix
FAIL: calls run
FAIL: cxxtest run
FAIL: field run
FAIL: final_method run
FAIL: findclass run
FAIL: invoke run
FAIL: martin run
FAIL: noclass run
FAIL: overload run
FAIL: register run
FAIL: simple_int run
FAIL: throwit run
FAIL: virtual run
FAIL: ArrayStore execution - source compiled test
FAIL: ArrayStore execution - gij test
FAIL: ArrayStore execution - bytecode->native test
FAIL: ArrayStore -O execution - source compiled test
FAIL: ArrayStore execution - gij test
FAIL: ArrayStore -O execution - bytecode->native test
FAIL: ArrayStore2 execution - source compiled test
FAIL: ArrayStore2 execution - gij test
FAIL: ArrayStore2 execution - bytecode->native test
FAIL: ArrayStore2 -O execution - source compiled test
FAIL: ArrayStore2 execution - gij test
FAIL: ArrayStore2 -O execution - bytecode->native test
FAIL: Array_1 execution - source compiled test
FAIL: Array_1 execution - gij test
FAIL: Array_1 execution - bytecode->native test
FAIL: Array_1 -O execution - source compiled test
FAIL: Array_1 execution - gij test
FAIL: Array_1 -O execution - bytecode->native test
FAIL: Array_2 execution - source compiled test
FAIL: Array_2 execution - gij test
FAIL: Array_2 execution - bytecode->native test
FAIL: Array_2 -O execution - source compiled test
FAIL: Array_2 execution - gij test
FAIL: Array_2 -O execution - bytecode->native test
FAIL: Array_3 execution - source compiled test
FAIL: Array_3 execution - gij test
FAIL: Array_3 execution - bytecode->native test
FAIL: Array_3 -O execution - source compiled test
FAIL: Array_3 execution - gij test
FAIL: Array_3 -O execution - bytecode->native test
FAIL: Class_1 execution - source compiled test
FAIL: Class_1 execution - gij test
FAIL: Class_1 execution - bytecode->native test
FAIL: Class_1 -O execution - source compiled test
FAIL: Class_1 execution - gij test
FAIL: Class_1 -O execution - bytecode->native test
FAIL: Divide_1 execution - source compiled test
FAIL: Divide_1 execution - gij test
FAIL: Divide_1 execution - bytecode->native test
FAIL: Divide_1 -O execution - source compiled test
FAIL: Divide_1 execution - gij test
FAIL: Divide_1 -O execution - bytecode->native test
FAIL: EvaluationOrder execution - source compiled test
FAIL: EvaluationOrder execution - gij test
FAIL: EvaluationOrder execution - bytecode->native test
FAIL: EvaluationOrder -O execution - source compiled test
FAIL: EvaluationOrder execution - gij test
FAIL: EvaluationOrder -O execution - bytecode->native test
FAIL: FileHandleGcTest execution - source compiled test
FAIL: FileHandleGcTest execution - gij test
FAIL: FileHandleGcTest execution - bytecode->native test
FAIL: FileHandleGcTest -O execution - source compiled test
FAIL: FileHandleGcTest execution - gij test
FAIL: FileHandleGcTest -O execution - bytecode->native test
FAIL: Final execution - source compiled test
FAIL: Final execution - gij test
FAIL: Final execution - bytecode->native test
FAIL: Final -O execution - source compiled 

Results for 3.3.5 (Debian 1:3.3.5-7) testsuite on i486-linux

2005-01-31 Thread Matthias Klose
LAST_UPDATED: Thu Jan 27 21:23:18 UTC 2005

Native configuration is i486-linux (cachaca)

=== gpc tests ===


Running target any

=== gpc Summary ===

# of tests3910
# of expected passes  3909
# of unsupported tests1
/home/packages/gcc/3.3/gcc-3.3-3.3.5/build/gcc/xgpc version 20040516, based on 
gcc-3.3.5 (Debian 1:3.3.5-7)

=== g++ tests ===


Running target unix
XPASS: g++.other/init5.C  Execution test

=== g++ Summary ===

# of expected passes8265
# of unexpected successes   1
# of expected failures  97
# of untested testcases 9
# of unsupported tests  15
/home/packages/gcc/3.3/gcc-3.3-3.3.5/build/gcc/testsuite/../g++ version 3.3.5 
(Debian 1:3.3.5-7)

=== g77 tests ===


Running target unix

=== g77 Summary ===

# of expected passes1720
# of unsupported tests  8
/home/packages/gcc/3.3/gcc-3.3-3.3.5/build/gcc/testsuite/../g77 version 3.3.5 
(Debian 1:3.3.5-7)

=== gcc tests ===


Running target unix
FAIL: gcc.dg/duff-2.c (test for excess errors)

=== gcc Summary ===

# of expected passes21476
# of unexpected failures1
# of expected failures  69
# of unsupported tests  101
/home/packages/gcc/3.3/gcc-3.3-3.3.5/build/gcc/xgcc version 3.3.5 (Debian 
1:3.3.5-7)

=== objc tests ===


Running target unix

=== objc Summary ===

# of expected passes1166
/home/packages/gcc/3.3/gcc-3.3-3.3.5/build/gcc/xgcc version 3.3.5 (Debian 
1:3.3.5-7)

=== treelang tests ===


Running target unix

=== treelang Summary ===

# of expected passes1
=== libjava tests ===


Running target unix
FAIL: SyncGlobal -O compilation from source
FAIL: SyncGlobal byte compilation
WARNING: program timed out.
FAIL: SyncTest execution - gij test
WARNING: program timed out.
FAIL: SyncTest execution - gij test

=== libjava Summary ===

# of expected passes2978
# of unexpected failures4
# of expected failures  16
# of untested testcases 19

=== libstdc++-v3 check-abi Summary ===

# of added symbols:  51
# of missing symbols:0
# of incompatible symbols:   0

using: 
/home/packages/gcc/3.3/gcc-3.3-3.3.5/src/libstdc++-v3/config/abi/i486-linux-gnu/baseline_symbols.txt

=== libstdc++-v3 tests ===


Running target unix
XPASS: 22_locale/collate_byname.cc execution test
XPASS: 22_locale/collate_members_char.cc execution test
XPASS: 22_locale/collate_members_wchar_t.cc execution test
XPASS: 22_locale/ctype_is_char.cc execution test
XPASS: 22_locale/ctype_is_wchar_t.cc execution test
XPASS: 22_locale/members.cc execution test
XPASS: 22_locale/messages_byname.cc execution test
XPASS: 22_locale/messages_members_char.cc execution test
XPASS: 22_locale/money_get_members_char.cc execution test
XPASS: 22_locale/money_get_members_wchar_t.cc execution test
XPASS: 22_locale/money_put_members_char.cc execution test
XPASS: 22_locale/money_put_members_wchar_t.cc execution test
XPASS: 22_locale/moneypunct_byname.cc execution test
XPASS: 22_locale/moneypunct_members_char.cc execution test
XPASS: 22_locale/moneypunct_members_wchar_t.cc execution test
XPASS: 22_locale/num_get_members_char.cc execution test
XPASS: 22_locale/num_get_members_wchar_t.cc execution test
XPASS: 22_locale/num_put_members_char.cc execution test
XPASS: 22_locale/num_put_members_wchar_t.cc execution test
XPASS: 22_locale/numpunct_byname.cc execution test
XPASS: 22_locale/numpunct_members_char.cc execution test
XPASS: 22_locale/numpunct_members_wchar_t.cc execution test
XPASS: 22_locale/time_get_members_char.cc execution test
XPASS: 22_locale/time_get_members_wchar_t.cc execution test
XPASS: 22_locale/time_put_members_char.cc execution test
XPASS: 22_locale/time_put_members_wchar_t.cc execution test

=== libstdc++-v3 Summary ===

# of expected passes453
# of unexpected successes   26
# of expected failures  2

Compiler version: 3.3.5 (Debian 1:3.3.5-7) 
Platform: i486-linux
configure flags: --host=i486-linux -v 
--enable-languages=c,c++,java,f77,pascal,objc,ada,treelang --prefix=/usr 
--mandir=/usr/share/man --infodir=/usr/share/info 
--with-gxx-include-dir=/usr/include/c++/3.3 --enable-shared --with-system-zlib 
--enable-nls --without-included-gettext --enable-__cxa_atexit 
--enable-clocale=gnu --enable-debug --enable-java-gc=boehm 
--enable-java-awt=xlib --enable-objc-gc
BOOT_CFLAGS=-g -O2 


Build Dependencies:
Desired=Unknown/Install/Remove/Purge/Hold
| Status=Not/Installed/Config-files/Unpacked/Failed-config/Half-installed
|/ Err?=(none)/Hold/Reinst-required/X=both-problems (Status,Err: uppercase=bad)
||/ Name   VersionDescription
+++-==-==-==

Results for 3.3.5 (Debian 1:3.3.5-7) testsuite on mips-linux

2005-01-31 Thread Matthias Klose
LAST_UPDATED: Thu Jan 27 21:23:18 UTC 2005

Native configuration is mips-linux (casals)

=== gpc tests ===


Running target any

=== gpc Summary ===

# of tests3910
# of expected passes  3905
# of unsupported tests5
/build/buildd/gcc-3.3-3.3.5/build/gcc/xgpc version 20040516, based on gcc-3.3.5 
(Debian 1:3.3.5-7)

=== g++ tests ===


Running target unix
XPASS: g++.dg/other/packed1.C execution test
FAIL: g++.abi/ptrflags.C (test for excess errors)
FAIL: g++.eh/catchptr1.C  Execution test
XPASS: g++.law/profile1.C (test for excess errors)
XPASS: g++.law/profile1.C  Execution test
XPASS: g++.other/init5.C  Execution test

=== g++ Summary ===

# of expected passes8182
# of unexpected failures2
# of unexpected successes   4
# of expected failures  100
# of untested testcases 23
# of unsupported tests  30
/build/buildd/gcc-3.3-3.3.5/build/gcc/testsuite/../g++ version 3.3.5 (Debian 
1:3.3.5-7)

=== g77 tests ===


Running target unix

=== g77 Summary ===

# of expected passes1720
# of unsupported tests  8
/build/buildd/gcc-3.3-3.3.5/build/gcc/testsuite/../g77 version 3.3.5 (Debian 
1:3.3.5-7)

=== gcc tests ===


Running target unix
WARNING: program timed out.
FAIL: gcc.c-torture/compile/20001226-1.c,  -O1  
WARNING: program timed out.
FAIL: gcc.c-torture/compile/20001226-1.c,  -O2  
WARNING: program timed out.
FAIL: gcc.c-torture/compile/20001226-1.c,  -O3 -fomit-frame-pointer  
WARNING: program timed out.
FAIL: gcc.c-torture/compile/20001226-1.c,  -O3 -g  
WARNING: program timed out.
FAIL: gcc.c-torture/compile/20001226-1.c,  -Os  
FAIL: gcc.c-torture/execute/20020412-1.c execution,  -O0 
FAIL: gcc.c-torture/execute/20020412-1.c execution,  -O1 
FAIL: gcc.c-torture/execute/20020412-1.c execution,  -O2 
FAIL: gcc.c-torture/execute/20020412-1.c execution,  -O3 -fomit-frame-pointer 
FAIL: gcc.c-torture/execute/20020412-1.c execution,  -O3 -fomit-frame-pointer 
-funroll-loops 
FAIL: gcc.c-torture/execute/20020412-1.c execution,  -O3 -fomit-frame-pointer 
-funroll-all-loops -finline-functions 
FAIL: gcc.c-torture/execute/20020412-1.c execution,  -O3 -g 
FAIL: gcc.c-torture/execute/20020412-1.c execution,  -Os 
FAIL: gcc.dg/duff-2.c (test for excess errors)
FAIL: gcc.dg/special/gcsec-1.c -ffunction-sections -fdata-sections 
-Wl,--gc-sections -static (test for excess errors)
FAIL: mips-abi 64

=== gcc Summary ===

# of expected passes21180
# of unexpected failures16
# of expected failures  93
# of unsupported tests  197
/build/buildd/gcc-3.3-3.3.5/build/gcc/xgcc version 3.3.5 (Debian 1:3.3.5-7)

=== objc tests ===


Running target unix

=== objc Summary ===

# of expected passes1166
/build/buildd/gcc-3.3-3.3.5/build/gcc/xgcc version 3.3.5 (Debian 1:3.3.5-7)

=== treelang tests ===


Running target unix

=== treelang Summary ===

# of expected passes1

=== libstdc++-v3 check-abi Summary ===

# of added symbols:  51
# of missing symbols:0
# of incompatible symbols:   0

using: 
/build/buildd/gcc-3.3-3.3.5/src/libstdc++-v3/config/abi/mips-linux-gnu/baseline_symbols.txt

=== libstdc++-v3 tests ===


Running target unix
XPASS: 22_locale/collate_byname.cc execution test
XPASS: 22_locale/collate_members_char.cc execution test
XPASS: 22_locale/collate_members_wchar_t.cc execution test
XPASS: 22_locale/ctype_is_char.cc execution test
XPASS: 22_locale/ctype_is_wchar_t.cc execution test
XPASS: 22_locale/members.cc execution test
XPASS: 22_locale/messages_byname.cc execution test
XPASS: 22_locale/messages_members_char.cc execution test
XPASS: 22_locale/money_get_members_char.cc execution test
XPASS: 22_locale/money_get_members_wchar_t.cc execution test
XPASS: 22_locale/money_put_members_char.cc execution test
XPASS: 22_locale/money_put_members_wchar_t.cc execution test
XPASS: 22_locale/moneypunct_byname.cc execution test
XPASS: 22_locale/moneypunct_members_char.cc execution test
XPASS: 22_locale/moneypunct_members_wchar_t.cc execution test
XPASS: 22_locale/num_get_members_char.cc execution test
XPASS: 22_locale/num_get_members_wchar_t.cc execution test
XPASS: 22_locale/num_put_members_char.cc execution test
XPASS: 22_locale/num_put_members_wchar_t.cc execution test
XPASS: 22_locale/numpunct_byname.cc execution test
XPASS: 22_locale/numpunct_members_char.cc execution test
XPASS: 22_locale/numpunct_members_wchar_t.cc execution test
XPASS: 22_locale/time_get_members_char.cc execution test
XPASS: 22_locale/time_get_members_wchar_t.cc execution test
XPASS: 22_locale/time_put_members_char.cc execution test
XPASS: 22_locale/time_put_members_wchar_t.cc execution test
WARNING: program timed out.
FAIL: thread/pthread1.cc execution test
WARNIN

Results for 3.3.5 (Debian 1:3.3.5-7) testsuite on mipsel-linux

2005-01-31 Thread Matthias Klose
LAST_UPDATED: Thu Jan 27 21:23:18 UTC 2005

Native configuration is mipsel-linux (remake)

=== gpc tests ===


Running target any

=== gpc Summary ===

# of tests3910
# of expected passes  3905
# of unsupported tests5
/build/buildd/gcc-3.3-3.3.5/build/gcc/xgpc version 20040516, based on gcc-3.3.5 
(Debian 1:3.3.5-7)

=== g++ tests ===


Running target unix
FAIL: g++.abi/ptrflags.C (test for excess errors)
FAIL: g++.eh/catchptr1.C  Execution test
XPASS: g++.law/profile1.C (test for excess errors)
XPASS: g++.law/profile1.C  Execution test

=== g++ Summary ===

# of expected passes4716
# of unexpected failures2
# of unexpected successes   2
# of expected failures  42
# of untested testcases 10
# of unsupported tests  30
/build/buildd/gcc-3.3-3.3.5/build/gcc/testsuite/../g++ version 3.3.5 (Debian 
1:3.3.5-7)

=== g77 tests ===


Running target unix

=== g77 Summary ===

# of expected passes1720
# of unsupported tests  8
/build/buildd/gcc-3.3-3.3.5/build/gcc/testsuite/../g77 version 3.3.5 (Debian 
1:3.3.5-7)

=== gcc tests ===


Running target unix
FAIL: gcc.c-torture/compile/20001226-1.c,  -O1  
FAIL: gcc.c-torture/compile/20001226-1.c,  -O2  
FAIL: gcc.c-torture/compile/20001226-1.c,  -O3 -fomit-frame-pointer  
FAIL: gcc.c-torture/compile/20001226-1.c,  -O3 -g  
WARNING: program timed out.
FAIL: gcc.c-torture/compile/20001226-1.c,  -Os  
FAIL: gcc.c-torture/execute/20020412-1.c execution,  -O0 
FAIL: gcc.c-torture/execute/20020412-1.c execution,  -O1 
FAIL: gcc.c-torture/execute/20020412-1.c execution,  -O2 
FAIL: gcc.c-torture/execute/20020412-1.c execution,  -O3 -fomit-frame-pointer 
FAIL: gcc.c-torture/execute/20020412-1.c execution,  -O3 -fomit-frame-pointer 
-funroll-loops 
FAIL: gcc.c-torture/execute/20020412-1.c execution,  -O3 -fomit-frame-pointer 
-funroll-all-loops -finline-functions 
FAIL: gcc.c-torture/execute/20020412-1.c execution,  -O3 -g 
FAIL: gcc.c-torture/execute/20020412-1.c execution,  -Os 

=== gcc Summary ===

# of expected passes14911
# of unexpected failures13
# of expected failures  45
# of unsupported tests  1
/build/buildd/gcc-3.3-3.3.5/build/gcc/xgcc version 3.3.5 (Debian 1:3.3.5-7)

=== objc tests ===


Running target unix

=== objc Summary ===

# of expected passes1166
/build/buildd/gcc-3.3-3.3.5/build/gcc/xgcc version 3.3.5 (Debian 1:3.3.5-7)

=== treelang tests ===


Running target unix

=== treelang Summary ===

# of expected passes1
=== libstdc++-v3 tests ===


Running target unix
XPASS: 22_locale/collate_byname.cc execution test
XPASS: 22_locale/collate_members_char.cc execution test
XPASS: 22_locale/collate_members_wchar_t.cc execution test
XPASS: 22_locale/ctype_is_char.cc execution test
XPASS: 22_locale/ctype_is_wchar_t.cc execution test
XPASS: 22_locale/members.cc execution test
XPASS: 22_locale/messages_byname.cc execution test
XPASS: 22_locale/messages_members_char.cc execution test
XPASS: 22_locale/money_get_members_char.cc execution test
XPASS: 22_locale/money_get_members_wchar_t.cc execution test
XPASS: 22_locale/money_put_members_char.cc execution test
XPASS: 22_locale/money_put_members_wchar_t.cc execution test
XPASS: 22_locale/moneypunct_byname.cc execution test
XPASS: 22_locale/moneypunct_members_char.cc execution test
XPASS: 22_locale/moneypunct_members_wchar_t.cc execution test
XPASS: 22_locale/num_get_members_char.cc execution test
XPASS: 22_locale/num_get_members_wchar_t.cc execution test
XPASS: 22_locale/num_put_members_char.cc execution test
XPASS: 22_locale/num_put_members_wchar_t.cc execution test
XPASS: 22_locale/numpunct_byname.cc execution test
XPASS: 22_locale/numpunct_members_char.cc execution test
XPASS: 22_locale/numpunct_members_wchar_t.cc execution test
XPASS: 22_locale/time_get_members_char.cc execution test
XPASS: 22_locale/time_get_members_wchar_t.cc execution test
XPASS: 22_locale/time_put_members_char.cc execution test
XPASS: 22_locale/time_put_members_wchar_t.cc execution test

=== libstdc++-v3 Summary ===

# of expected passes222
# of unexpected successes   26
# of expected failures  1

Compiler version: 3.3.5 (Debian 1:3.3.5-7) 
Platform: mipsel-linux
configure flags: --host=mipsel-linux -v 
--enable-languages=c,c++,f77,pascal,objc,ada,treelang --prefix=/usr 
--mandir=/usr/share/man --infodir=/usr/share/info 
--with-gxx-include-dir=/usr/include/c++/3.3 --enable-shared --with-system-zlib 
--enable-nls --without-included-gettext --enable-__cxa_atexit 
--enable-clocale=gnu --enable-debug --enable-objc-gc
BOOT_CFLAGS=-g -O2 


Build Dependencies:
Desired=Unknown/Install/Remove/Purge/Hold
| Status=Not/Installed/Config-files/Unpacked/Failed-config/Ha

Results for 3.3.5 (Debian 1:3.3.5-8) testsuite on ia64-linux

2005-01-31 Thread Matthias Klose
LAST_UPDATED: Sun Jan 30 17:58:51 UTC 2005

Native configuration is ia64-linux (caballero)

=== gpc tests ===


Running target any
FAIL: arctan.pas
FAIL: fjf512.pas
FAIL: fjf762a.pas
FAIL: math.pas

=== gpc Summary ===

# of tests3910
# of expected passes  3903
# of unexpected failures  4
# of unsupported tests3
/build/buildd/gcc-3.3-3.3.5/build/gcc/xgpc version 20040516, based on gcc-3.3.5 
(Debian 1:3.3.5-8)

=== g++ tests ===


Running target unix
XPASS: g++.other/init5.C  Execution test

=== g++ Summary ===

# of expected passes7982
# of unexpected successes   1
# of expected failures  97
# of untested testcases 23
# of unsupported tests  28
/build/buildd/gcc-3.3-3.3.5/build/gcc/testsuite/../g++ version 3.3.5 (Debian 
1:3.3.5-8)

=== g77 tests ===


Running target unix

=== g77 Summary ===

# of expected passes1720
# of unsupported tests  8
/build/buildd/gcc-3.3-3.3.5/build/gcc/testsuite/../g77 version 3.3.5 (Debian 
1:3.3.5-8)

=== gcc tests ===


Running target unix
XPASS: gcc.c-torture/execute/20020227-1.c execution,  -O0 
FAIL: gcc.c-torture/execute/20020227-1.c compilation,  -O2 
UNRESOLVED: gcc.c-torture/execute/20020227-1.c execution,  -O2 
FAIL: gcc.c-torture/execute/20020227-1.c compilation,  -O3 -fomit-frame-pointer 
UNRESOLVED: gcc.c-torture/execute/20020227-1.c execution,  -O3 
-fomit-frame-pointer 
FAIL: gcc.c-torture/execute/20020227-1.c compilation,  -O3 -g 
UNRESOLVED: gcc.c-torture/execute/20020227-1.c execution,  -O3 -g 
FAIL: gcc.c-torture/execute/20020227-1.c compilation,  -Os 
UNRESOLVED: gcc.c-torture/execute/20020227-1.c execution,  -Os 
FAIL: gcc.dg/duff-2.c (test for excess errors)
FAIL: gcc.dg/special/gcsec-1.c -ffunction-sections -fdata-sections 
-Wl,--gc-sections -static (test for excess errors)

=== gcc Summary ===

# of expected passes20888
# of unexpected failures6
# of unexpected successes   1
# of expected failures  78
# of unresolved testcases   4
# of unsupported tests  187
/build/buildd/gcc-3.3-3.3.5/build/gcc/xgcc version 3.3.5 (Debian 1:3.3.5-8)

=== objc tests ===


Running target unix

=== objc Summary ===

# of expected passes1166
/build/buildd/gcc-3.3-3.3.5/build/gcc/xgcc version 3.3.5 (Debian 1:3.3.5-8)

=== treelang tests ===


Running target unix

=== treelang Summary ===

# of expected passes1
=== libjava tests ===


Running target unix

=== libjava Summary ===

# of expected passes2991
# of expected failures  16
# of untested testcases 12

=== libstdc++-v3 check-abi Summary ===

# of added symbols:  78
# of missing symbols:0
# of incompatible symbols:   0

using: 
/build/buildd/gcc-3.3-3.3.5/src/libstdc++-v3/config/abi/ia64-linux-gnu/baseline_symbols.txt

=== libstdc++-v3 tests ===


Running target unix
XPASS: 22_locale/collate_byname.cc execution test
XPASS: 22_locale/collate_members_char.cc execution test
XPASS: 22_locale/collate_members_wchar_t.cc execution test
XPASS: 22_locale/ctype_is_char.cc execution test
XPASS: 22_locale/ctype_is_wchar_t.cc execution test
XPASS: 22_locale/members.cc execution test
XPASS: 22_locale/messages_byname.cc execution test
XPASS: 22_locale/messages_members_char.cc execution test
XPASS: 22_locale/money_get_members_char.cc execution test
XPASS: 22_locale/money_get_members_wchar_t.cc execution test
XPASS: 22_locale/money_put_members_char.cc execution test
XPASS: 22_locale/money_put_members_wchar_t.cc execution test
XPASS: 22_locale/moneypunct_byname.cc execution test
XPASS: 22_locale/moneypunct_members_char.cc execution test
XPASS: 22_locale/moneypunct_members_wchar_t.cc execution test
XPASS: 22_locale/num_get_members_char.cc execution test
XPASS: 22_locale/num_get_members_wchar_t.cc execution test
XPASS: 22_locale/num_put_members_char.cc execution test
XPASS: 22_locale/numpunct_byname.cc execution test
XPASS: 22_locale/numpunct_members_char.cc execution test
XPASS: 22_locale/numpunct_members_wchar_t.cc execution test
XPASS: 22_locale/time_get_members_char.cc execution test
XPASS: 22_locale/time_get_members_wchar_t.cc execution test
XPASS: 22_locale/time_put_members_char.cc execution test
XPASS: 22_locale/time_put_members_wchar_t.cc execution test

=== libstdc++-v3 Summary ===

# of expected passes453
# of unexpected successes   25
# of expected failures  3

Compiler version: 3.3.5 (Debian 1:3.3.5-8) 
Platform: ia64-linux
configure flags: --host=ia64-linux -v 
--enable-languages=c,c++,java,f77,pascal,objc,ada,treelang --prefix=/usr 
--mandir=/usr/share/man --infodir=/usr/share/info 
--with-gxx-include-dir=/usr/include/c++/3.3 --ena

Results for 3.3.5 (Debian 1:3.3.5-8) testsuite on alpha-unknown-linux-gnu

2005-01-31 Thread Matthias Klose
LAST_UPDATED: Sun Jan 30 17:58:51 UTC 2005

Native configuration is alpha-unknown-linux-gnu

=== libjava tests ===


Running target unix
WARNING: program timed out.
FAIL: SyncTest execution - bytecode->native test
WARNING: program timed out.
FAIL: SyncTest -O execution - bytecode->native test
FAIL: initexc execution - gij test
FAIL: initexc execution - gij test

=== libjava Summary ===

# of expected passes2983
# of unexpected failures4
# of expected failures  16
# of untested testcases 16

=== libstdc++-v3 check-abi Summary ===

# of added symbols:  91
# of missing symbols:0
# of incompatible symbols:   0

using: 
/build/buildd/gcc-3.3-3.3.5/src/libstdc++-v3/config/abi/alpha-linux-gnu/baseline_symbols.txt

=== libstdc++-v3 tests ===


Running target unix
XPASS: 22_locale/collate_byname.cc execution test
XPASS: 22_locale/collate_members_char.cc execution test
XPASS: 22_locale/collate_members_wchar_t.cc execution test
XPASS: 22_locale/ctype_is_char.cc execution test
XPASS: 22_locale/ctype_is_wchar_t.cc execution test
XPASS: 22_locale/members.cc execution test
XPASS: 22_locale/messages_byname.cc execution test
XPASS: 22_locale/messages_members_char.cc execution test
XPASS: 22_locale/money_get_members_char.cc execution test
XPASS: 22_locale/money_get_members_wchar_t.cc execution test
XPASS: 22_locale/money_put_members_char.cc execution test
XPASS: 22_locale/money_put_members_wchar_t.cc execution test
XPASS: 22_locale/moneypunct_byname.cc execution test
XPASS: 22_locale/moneypunct_members_char.cc execution test
XPASS: 22_locale/moneypunct_members_wchar_t.cc execution test
XPASS: 22_locale/num_get_members_char.cc execution test
XPASS: 22_locale/num_get_members_wchar_t.cc execution test
XPASS: 22_locale/num_put_members_char.cc execution test
XPASS: 22_locale/num_put_members_wchar_t.cc execution test
XPASS: 22_locale/numpunct_byname.cc execution test
XPASS: 22_locale/numpunct_members_char.cc execution test
XPASS: 22_locale/numpunct_members_wchar_t.cc execution test
XPASS: 22_locale/time_get_members_char.cc execution test
XPASS: 22_locale/time_get_members_wchar_t.cc execution test
XPASS: 22_locale/time_put_members_char.cc execution test
XPASS: 22_locale/time_put_members_wchar_t.cc execution test
FAIL: 26_numerics/fabs_inline.cc (test for excess errors)
WARNING: 26_numerics/fabs_inline.cc compilation failed to produce executable

=== libstdc++-v3 Summary ===

# of expected passes451
# of unexpected failures1
# of unexpected successes   26
# of expected failures  2
=== gpc tests ===


Running target any
FAIL: fjf762a.pas
FAIL: fjf781f.pas
FAIL: fproc.pas
FAIL: nlgpp.pas
FAIL: nlgpp2.pas

=== gpc Summary ===

# of tests3910
# of expected passes  3900
# of unexpected failures  5
# of unsupported tests5
/build/buildd/gcc-3.3-3.3.5/build/gcc/xgpc version 20040516, based on gcc-3.3.5 
(Debian 1:3.3.5-8)

=== g++ tests ===


Running target unix
XPASS: g++.other/init5.C  Execution test

=== g++ Summary ===

# of expected passes8216
# of unexpected successes   1
# of expected failures  97
# of untested testcases 22
# of unsupported tests  29
/build/buildd/gcc-3.3-3.3.5/build/gcc/testsuite/../g++ version 3.3.5 (Debian 
1:3.3.5-8)

=== g77 tests ===


Running target unix

=== g77 Summary ===

# of expected passes1720
# of unsupported tests  8
/build/buildd/gcc-3.3-3.3.5/build/gcc/testsuite/../g77 version 3.3.5 (Debian 
1:3.3.5-8)

=== gcc tests ===


Running target unix
FAIL: gcc.c-torture/execute/20020227-1.c compilation,  -O0 
UNRESOLVED: gcc.c-torture/execute/20020227-1.c execution,  -O0 
FAIL: gcc.c-torture/execute/20020227-1.c compilation,  -O1 
UNRESOLVED: gcc.c-torture/execute/20020227-1.c execution,  -O1 
FAIL: gcc.c-torture/execute/20020227-1.c compilation,  -O2 
UNRESOLVED: gcc.c-torture/execute/20020227-1.c execution,  -O2 
FAIL: gcc.c-torture/execute/20020227-1.c compilation,  -O3 -fomit-frame-pointer 
UNRESOLVED: gcc.c-torture/execute/20020227-1.c execution,  -O3 
-fomit-frame-pointer 
FAIL: gcc.c-torture/execute/20020227-1.c compilation,  -O3 -g 
UNRESOLVED: gcc.c-torture/execute/20020227-1.c execution,  -O3 -g 
FAIL: gcc.c-torture/execute/20020227-1.c compilation,  -Os 
UNRESOLVED: gcc.c-torture/execute/20020227-1.c execution,  -Os 
FAIL: gcc.c-torture/execute/simd-2.c compilation,  -O3 -fomit-frame-pointer 
UNRESOLVED: gcc.c-torture/execute/simd-2.c execution,  -O3 -fomit-frame-pointer 
FAIL: gcc.c-torture/execute/simd-2.c compilation,  -O3 -g 
UNRESOLVED: gcc.c-torture/execute/simd-2.c execution,  -O3 -g 
FAIL: gcc.dg/duff-2.c (test for excess errors)
FAIL: gcc.dg/special/gcsec-1.c -ffunction-sections -fdata-sections 
-Wl,--gc-sections -static 

Results for 3.3.5 (Debian 1:3.3.5-8) testsuite on powerpc-linux

2005-01-31 Thread Matthias Klose
LAST_UPDATED: Sun Jan 30 17:58:51 UTC 2005

Native configuration is powerpc-linux (voltaire)

=== gpc tests ===


Running target any

=== gpc Summary ===

# of tests3910
# of expected passes  3905
# of unsupported tests5
/build/buildd/gcc-3.3-3.3.5/build/gcc/xgpc version 20040516, based on gcc-3.3.5 
(Debian 1:3.3.5-8)

=== g++ tests ===


Running target unix
XPASS: g++.dg/other/packed1.C execution test
XPASS: g++.other/init5.C  Execution test

=== g++ Summary ===

# of expected passes8189
# of unexpected successes   2
# of expected failures  97
# of untested testcases 23
# of unsupported tests  30
/build/buildd/gcc-3.3-3.3.5/build/gcc/testsuite/../g++ version 3.3.5 (Debian 
1:3.3.5-8)

=== g77 tests ===


Running target unix

=== g77 Summary ===

# of expected passes1720
# of unsupported tests  8
/build/buildd/gcc-3.3-3.3.5/build/gcc/testsuite/../g77 version 3.3.5 (Debian 
1:3.3.5-8)

=== gcc tests ===


Running target unix
FAIL: gcc.dg/20020103-1.c scan-assembler-not LC
FAIL: gcc.dg/altivec-5.c (test for excess errors)
FAIL: gcc.dg/duff-2.c (test for excess errors)

=== gcc Summary ===

# of expected passes21237
# of unexpected failures3
# of expected failures  67
# of unsupported tests  178
/build/buildd/gcc-3.3-3.3.5/build/gcc/xgcc version 3.3.5 (Debian 1:3.3.5-8)

=== objc tests ===


Running target unix

=== objc Summary ===

# of expected passes1166
/build/buildd/gcc-3.3-3.3.5/build/gcc/xgcc version 3.3.5 (Debian 1:3.3.5-8)

=== libjava tests ===


Running target unix
FAIL: Array_3 -O execution - source compiled test
WARNING: program timed out.
FAIL: SyncTest execution - gij test
WARNING: program timed out.
FAIL: SyncTest execution - gij test

=== libjava Summary ===

# of expected passes2985
# of unexpected failures3
# of expected failures  16
# of untested testcases 15
=== libstdc++-v3 tests ===


Running target unix
XPASS: 22_locale/collate_byname.cc execution test
XPASS: 22_locale/collate_members_char.cc execution test
XPASS: 22_locale/collate_members_wchar_t.cc execution test
XPASS: 22_locale/ctype_is_char.cc execution test
XPASS: 22_locale/ctype_is_wchar_t.cc execution test
XPASS: 22_locale/members.cc execution test
XPASS: 22_locale/messages_byname.cc execution test
XPASS: 22_locale/messages_members_char.cc execution test
XPASS: 22_locale/money_get_members_char.cc execution test
XPASS: 22_locale/money_get_members_wchar_t.cc execution test
XPASS: 22_locale/money_put_members_char.cc execution test
XPASS: 22_locale/money_put_members_wchar_t.cc execution test
XPASS: 22_locale/moneypunct_byname.cc execution test
XPASS: 22_locale/moneypunct_members_char.cc execution test
XPASS: 22_locale/moneypunct_members_wchar_t.cc execution test
XPASS: 22_locale/num_get_members_char.cc execution test
XPASS: 22_locale/num_get_members_wchar_t.cc execution test
XPASS: 22_locale/num_put_members_char.cc execution test
XPASS: 22_locale/num_put_members_wchar_t.cc execution test
XPASS: 22_locale/numpunct_byname.cc execution test
XPASS: 22_locale/numpunct_members_char.cc execution test
XPASS: 22_locale/numpunct_members_wchar_t.cc execution test
XPASS: 22_locale/time_get_members_char.cc execution test
XPASS: 22_locale/time_get_members_wchar_t.cc execution test
XPASS: 22_locale/time_put_members_char.cc execution test
XPASS: 22_locale/time_put_members_wchar_t.cc execution test

=== libstdc++-v3 Summary ===

# of expected passes453
# of unexpected successes   26
# of expected failures  2

Compiler version: 3.3.5 (Debian 1:3.3.5-8) 
Platform: powerpc-linux
configure flags: --host=powerpc-linux -v 
--enable-languages=c,c++,java,f77,pascal,objc,ada --prefix=/usr 
--mandir=/usr/share/man --infodir=/usr/share/info 
--with-gxx-include-dir=/usr/include/c++/3.3 --enable-shared --with-system-zlib 
--enable-nls --without-included-gettext --enable-__cxa_atexit 
--enable-clocale=gnu --enable-debug --enable-java-gc=boehm 
--enable-java-awt=xlib --enable-objc-gc --disable-multilib
BOOT_CFLAGS=-g -O2 


Build Dependencies:
Desired=Unknown/Install/Remove/Purge/Hold
| Status=Not/Installed/Config-files/Unpacked/Failed-config/Half-installed
|/ Err?=(none)/Hold/Reinst-required/X=both-problems (Status,Err: uppercase=bad)
||/ Name   VersionDescription
+++-==-==-
ii  binutils   2.15-5 The GNU assembler, linker and binary utiliti
ii  libc6-dev  2.3.2.ds1-20   GNU C Library: Development Libraries and Hea


Patches that Debian applied in this version:

cvs-updates:
  CVS updates from the 3.3 branch upto 20050130

pr14925:
  Backport of PR14925 t

Results for 3.3.5 (Debian 1:3.3.5-8) testsuite on mipsel-linux

2005-01-31 Thread Matthias Klose
LAST_UPDATED: Sun Jan 30 17:58:51 UTC 2005

Native configuration is mipsel-linux (remake)

=== gpc tests ===


Running target any

=== gpc Summary ===

# of tests3910
# of expected passes  3905
# of unsupported tests5
/build/buildd/gcc-3.3-3.3.5/build/gcc/xgpc version 20040516, based on gcc-3.3.5 
(Debian 1:3.3.5-8)

=== g++ tests ===


Running target unix
FAIL: g++.abi/ptrflags.C (test for excess errors)
FAIL: g++.eh/catchptr1.C  Execution test
XPASS: g++.law/profile1.C (test for excess errors)
XPASS: g++.law/profile1.C  Execution test
XPASS: g++.other/init5.C  Execution test

=== g++ Summary ===

# of expected passes8183
# of unexpected failures2
# of unexpected successes   3
# of expected failures  100
# of untested testcases 23
# of unsupported tests  30
/build/buildd/gcc-3.3-3.3.5/build/gcc/testsuite/../g++ version 3.3.5 (Debian 
1:3.3.5-8)

=== g77 tests ===


Running target unix

=== g77 Summary ===

# of expected passes1720
# of unsupported tests  8
/build/buildd/gcc-3.3-3.3.5/build/gcc/testsuite/../g77 version 3.3.5 (Debian 
1:3.3.5-8)

=== gcc tests ===


Running target unix
FAIL: gcc.c-torture/compile/20001226-1.c,  -O1  
FAIL: gcc.c-torture/compile/20001226-1.c,  -O2  
FAIL: gcc.c-torture/compile/20001226-1.c,  -O3 -fomit-frame-pointer  
FAIL: gcc.c-torture/compile/20001226-1.c,  -O3 -g  
WARNING: program timed out.
FAIL: gcc.c-torture/compile/20001226-1.c,  -Os  
FAIL: gcc.c-torture/execute/20020412-1.c execution,  -O0 
FAIL: gcc.c-torture/execute/20020412-1.c execution,  -O1 
FAIL: gcc.c-torture/execute/20020412-1.c execution,  -O2 
FAIL: gcc.c-torture/execute/20020412-1.c execution,  -O3 -fomit-frame-pointer 
FAIL: gcc.c-torture/execute/20020412-1.c execution,  -O3 -fomit-frame-pointer 
-funroll-loops 
FAIL: gcc.c-torture/execute/20020412-1.c execution,  -O3 -fomit-frame-pointer 
-funroll-all-loops -finline-functions 
FAIL: gcc.c-torture/execute/20020412-1.c execution,  -O3 -g 
FAIL: gcc.c-torture/execute/20020412-1.c execution,  -Os 

=== gcc Summary ===

# of expected passes14911
# of unexpected failures13
# of expected failures  45
# of unsupported tests  1
/build/buildd/gcc-3.3-3.3.5/build/gcc/xgcc version 3.3.5 (Debian 1:3.3.5-8)

=== objc tests ===


Running target unix

=== objc Summary ===

# of expected passes1166
/build/buildd/gcc-3.3-3.3.5/build/gcc/xgcc version 3.3.5 (Debian 1:3.3.5-8)

=== treelang tests ===


Running target unix

=== treelang Summary ===

# of expected passes1
=== libstdc++-v3 tests ===


Running target unix
XPASS: 22_locale/collate_byname.cc execution test
XPASS: 22_locale/collate_members_char.cc execution test
XPASS: 22_locale/collate_members_wchar_t.cc execution test
XPASS: 22_locale/ctype_is_char.cc execution test
XPASS: 22_locale/ctype_is_wchar_t.cc execution test
XPASS: 22_locale/members.cc execution test
XPASS: 22_locale/messages_byname.cc execution test
XPASS: 22_locale/messages_members_char.cc execution test
XPASS: 22_locale/money_get_members_char.cc execution test
XPASS: 22_locale/money_get_members_wchar_t.cc execution test
XPASS: 22_locale/money_put_members_char.cc execution test
XPASS: 22_locale/money_put_members_wchar_t.cc execution test
XPASS: 22_locale/moneypunct_byname.cc execution test
XPASS: 22_locale/moneypunct_members_char.cc execution test
XPASS: 22_locale/moneypunct_members_wchar_t.cc execution test
XPASS: 22_locale/num_get_members_char.cc execution test
XPASS: 22_locale/num_get_members_wchar_t.cc execution test
XPASS: 22_locale/num_put_members_char.cc execution test
XPASS: 22_locale/num_put_members_wchar_t.cc execution test
XPASS: 22_locale/numpunct_byname.cc execution test
XPASS: 22_locale/numpunct_members_char.cc execution test
XPASS: 22_locale/numpunct_members_wchar_t.cc execution test
XPASS: 22_locale/time_get_members_char.cc execution test
XPASS: 22_locale/time_get_members_wchar_t.cc execution test
XPASS: 22_locale/time_put_members_char.cc execution test
XPASS: 22_locale/time_put_members_wchar_t.cc execution test

=== libstdc++-v3 Summary ===

# of expected passes222
# of unexpected successes   26
# of expected failures  1

Compiler version: 3.3.5 (Debian 1:3.3.5-8) 
Platform: mipsel-linux
configure flags: --host=mipsel-linux -v 
--enable-languages=c,c++,f77,pascal,objc,ada,treelang --prefix=/usr 
--mandir=/usr/share/man --infodir=/usr/share/info 
--with-gxx-include-dir=/usr/include/c++/3.3 --enable-shared --with-system-zlib 
--enable-nls --without-included-gettext --enable-__cxa_atexit 
--enable-clocale=gnu --enable-debug --enable-objc-gc
BOOT_CFLAGS=-g -O2 


Build Dependencies:
Desired=Unknown/Install/Remove/Purge/Hold
| Status=Not/Instal

Results for 3.3.5 (Debian 1:3.3.5-8) testsuite on i486-linux

2005-01-31 Thread Matthias Klose
LAST_UPDATED: Sun Jan 30 17:58:51 UTC 2005

Native configuration is i486-linux (cachaca)

=== gpc tests ===


Running target any

=== gpc Summary ===

# of tests3910
# of expected passes  3909
# of unsupported tests1
/home/packages/gcc/3.3/gcc-3.3-3.3.5/build/gcc/xgpc version 20040516, based on 
gcc-3.3.5 (Debian 1:3.3.5-8)

=== g++ tests ===


Running target unix
XPASS: g++.other/init5.C  Execution test

=== g++ Summary ===

# of expected passes8265
# of unexpected successes   1
# of expected failures  97
# of untested testcases 9
# of unsupported tests  15
/home/packages/gcc/3.3/gcc-3.3-3.3.5/build/gcc/testsuite/../g++ version 3.3.5 
(Debian 1:3.3.5-8)

=== g77 tests ===


Running target unix

=== g77 Summary ===

# of expected passes1720
# of unsupported tests  8
/home/packages/gcc/3.3/gcc-3.3-3.3.5/build/gcc/testsuite/../g77 version 3.3.5 
(Debian 1:3.3.5-8)

=== gcc tests ===


Running target unix
FAIL: gcc.dg/duff-2.c (test for excess errors)

=== gcc Summary ===

# of expected passes21476
# of unexpected failures1
# of expected failures  69
# of unsupported tests  101
/home/packages/gcc/3.3/gcc-3.3-3.3.5/build/gcc/xgcc version 3.3.5 (Debian 
1:3.3.5-8)

=== objc tests ===


Running target unix

=== objc Summary ===

# of expected passes1166
/home/packages/gcc/3.3/gcc-3.3-3.3.5/build/gcc/xgcc version 3.3.5 (Debian 
1:3.3.5-8)

=== treelang tests ===


Running target unix

=== treelang Summary ===

# of expected passes1
=== libjava tests ===


Running target unix
WARNING: program timed out.
FAIL: SyncTest execution - gij test
WARNING: program timed out.
FAIL: SyncTest execution - gij test

=== libjava Summary ===

# of expected passes2987
# of unexpected failures2
# of expected failures  16
# of untested testcases 14

=== libstdc++-v3 check-abi Summary ===

# of added symbols:  51
# of missing symbols:0
# of incompatible symbols:   0

using: 
/home/packages/gcc/3.3/gcc-3.3-3.3.5/src/libstdc++-v3/config/abi/i486-linux-gnu/baseline_symbols.txt

=== libstdc++-v3 tests ===


Running target unix
XPASS: 22_locale/collate_byname.cc execution test
XPASS: 22_locale/collate_members_char.cc execution test
XPASS: 22_locale/collate_members_wchar_t.cc execution test
XPASS: 22_locale/ctype_is_char.cc execution test
XPASS: 22_locale/ctype_is_wchar_t.cc execution test
XPASS: 22_locale/members.cc execution test
XPASS: 22_locale/messages_byname.cc execution test
XPASS: 22_locale/messages_members_char.cc execution test
XPASS: 22_locale/money_get_members_char.cc execution test
XPASS: 22_locale/money_get_members_wchar_t.cc execution test
XPASS: 22_locale/money_put_members_char.cc execution test
XPASS: 22_locale/money_put_members_wchar_t.cc execution test
XPASS: 22_locale/moneypunct_byname.cc execution test
XPASS: 22_locale/moneypunct_members_char.cc execution test
XPASS: 22_locale/moneypunct_members_wchar_t.cc execution test
XPASS: 22_locale/num_get_members_char.cc execution test
XPASS: 22_locale/num_get_members_wchar_t.cc execution test
XPASS: 22_locale/num_put_members_char.cc execution test
XPASS: 22_locale/num_put_members_wchar_t.cc execution test
XPASS: 22_locale/numpunct_byname.cc execution test
XPASS: 22_locale/numpunct_members_char.cc execution test
XPASS: 22_locale/numpunct_members_wchar_t.cc execution test
XPASS: 22_locale/time_get_members_char.cc execution test
XPASS: 22_locale/time_get_members_wchar_t.cc execution test
XPASS: 22_locale/time_put_members_char.cc execution test
XPASS: 22_locale/time_put_members_wchar_t.cc execution test

=== libstdc++-v3 Summary ===

# of expected passes453
# of unexpected successes   26
# of expected failures  2

Compiler version: 3.3.5 (Debian 1:3.3.5-8) 
Platform: i486-linux
configure flags: --host=i486-linux -v 
--enable-languages=c,c++,java,f77,pascal,objc,ada,treelang --prefix=/usr 
--mandir=/usr/share/man --infodir=/usr/share/info 
--with-gxx-include-dir=/usr/include/c++/3.3 --enable-shared --with-system-zlib 
--enable-nls --without-included-gettext --enable-__cxa_atexit 
--enable-clocale=gnu --enable-debug --enable-java-gc=boehm 
--enable-java-awt=xlib --enable-objc-gc
BOOT_CFLAGS=-g -O2 


Build Dependencies:
Desired=Unknown/Install/Remove/Purge/Hold
| Status=Not/Installed/Config-files/Unpacked/Failed-config/Half-installed
|/ Err?=(none)/Hold/Reinst-required/X=both-problems (Status,Err: uppercase=bad)
||/ Name   VersionDescription
+++-==-==-
ii  binutils   2.15-5 The GNU assembler, li

Results for 3.3.5 (Debian 1:3.3.5-8) testsuite on sparc-linux

2005-01-31 Thread Matthias Klose
LAST_UPDATED: Sun Jan 30 17:58:51 UTC 2005

Native configuration is sparc-linux (vore)

=== gpc tests ===


Running target any

=== gpc Summary ===

# of tests3910
# of expected passes  3905
# of unsupported tests5
/build/buildd/gcc-3.3-3.3.5/build/gcc/xgpc version 20040516, based on gcc-3.3.5 
(Debian 1:3.3.5-8)

=== g++ tests ===


Running target unix
XPASS: g++.other/init5.C  Execution test

=== g++ Summary ===

# of expected passes8195
# of unexpected successes   1
# of expected failures  98
# of untested testcases 22
# of unsupported tests  28
/build/buildd/gcc-3.3-3.3.5/build/gcc/testsuite/../g++ version 3.3.5 (Debian 
1:3.3.5-8)

=== g77 tests ===


Running target unix

=== g77 Summary ===

# of expected passes1720
# of unsupported tests  8
/build/buildd/gcc-3.3-3.3.5/build/gcc/testsuite/../g77 version 3.3.5 (Debian 
1:3.3.5-8)

=== gcc tests ===


Running target unix
FAIL: gcc.dg/duff-2.c (test for excess errors)

=== gcc Summary ===

# of expected passes21222
# of unexpected failures1
# of expected failures  67
# of unsupported tests  180
/build/buildd/gcc-3.3-3.3.5/build/gcc/xgcc version 3.3.5 (Debian 1:3.3.5-8)

=== objc tests ===


Running target unix

=== objc Summary ===

# of expected passes1166
/build/buildd/gcc-3.3-3.3.5/build/gcc/xgcc version 3.3.5 (Debian 1:3.3.5-8)

=== treelang tests ===


Running target unix

=== treelang Summary ===

# of expected passes1
=== libjava tests ===


Running target unix
WARNING: program timed out.
FAIL: SyncTest execution - gij test
FAIL: SyncTest execution - bytecode->native test
FAIL: SyncTest execution - gij test
WARNING: program timed out.
FAIL: SyncTest -O execution - bytecode->native test

=== libjava Summary ===

# of expected passes2983
# of unexpected failures4
# of expected failures  16
# of untested testcases 16

=== libstdc++-v3 check-abi Summary ===

# of added symbols:  51
# of missing symbols:134
# of incompatible symbols:   134

using: 
/build/buildd/gcc-3.3-3.3.5/src/libstdc++-v3/config/abi/sparc-linux-gnu/baseline_symbols.txt

=== libstdc++-v3 tests ===


Running target unix
XPASS: 22_locale/collate_byname.cc execution test
XPASS: 22_locale/collate_members_char.cc execution test
XPASS: 22_locale/collate_members_wchar_t.cc execution test
XPASS: 22_locale/ctype_is_char.cc execution test
XPASS: 22_locale/ctype_is_wchar_t.cc execution test
XPASS: 22_locale/members.cc execution test
XPASS: 22_locale/messages_byname.cc execution test
XPASS: 22_locale/messages_members_char.cc execution test
XPASS: 22_locale/money_get_members_char.cc execution test
XPASS: 22_locale/money_get_members_wchar_t.cc execution test
XPASS: 22_locale/money_put_members_char.cc execution test
XPASS: 22_locale/money_put_members_wchar_t.cc execution test
XPASS: 22_locale/moneypunct_byname.cc execution test
XPASS: 22_locale/moneypunct_members_char.cc execution test
XPASS: 22_locale/moneypunct_members_wchar_t.cc execution test
XPASS: 22_locale/num_get_members_char.cc execution test
XPASS: 22_locale/num_get_members_wchar_t.cc execution test
XPASS: 22_locale/num_put_members_char.cc execution test
XPASS: 22_locale/num_put_members_wchar_t.cc execution test
XPASS: 22_locale/numpunct_byname.cc execution test
XPASS: 22_locale/numpunct_members_char.cc execution test
XPASS: 22_locale/numpunct_members_wchar_t.cc execution test
XPASS: 22_locale/time_get_members_char.cc execution test
XPASS: 22_locale/time_get_members_wchar_t.cc execution test
XPASS: 22_locale/time_put_members_char.cc execution test
XPASS: 22_locale/time_put_members_wchar_t.cc execution test
WARNING: program timed out.
FAIL: 27_io/filebuf_members.cc execution test

=== libstdc++-v3 Summary ===

# of expected passes452
# of unexpected failures1
# of unexpected successes   26
# of expected failures  2

Compiler version: 3.3.5 (Debian 1:3.3.5-8) 
Platform: sparc-linux
configure flags: --host=sparc-linux -v 
--enable-languages=c,c++,java,f77,pascal,objc,ada,treelang --prefix=/usr 
--mandir=/usr/share/man --infodir=/usr/share/info 
--with-gxx-include-dir=/usr/include/c++/3.3 --enable-shared --with-system-zlib 
--enable-nls --without-included-gettext --enable-__cxa_atexit 
--enable-clocale=gnu --enable-debug --enable-java-gc=boehm 
--enable-java-awt=xlib --with-cpu=v7 --enable-objc-gc
BOOT_CFLAGS=-g -O2 


Build Dependencies:
Desired=Unknown/Install/Remove/Purge/Hold
| Status=Not/Installed/Config-files/Unpacked/Failed-config/Half-installed
|/ Err?=(none)/Hold/Reinst-required/X=both-problems (Status,Err: uppercase=bad)
||/ Nam

Results for 4.0.0 20050125 (experimental) (Debian 4.0-0pre5) testsuite on arm-unknown-linux-gnu

2005-01-31 Thread Matthias Klose
LAST_UPDATED: Tue Jan 25 23:51:29 UTC 2005

Native configuration is arm-unknown-linux-gnu

=== libffi tests ===


Running target unix
FAIL: libffi.call/closure_fn0.c (test for excess errors)
WARNING: libffi.call/closure_fn0.c compilation failed to produce executable
FAIL: libffi.call/closure_fn1.c (test for excess errors)
WARNING: libffi.call/closure_fn1.c compilation failed to produce executable
FAIL: libffi.call/closure_fn2.c (test for excess errors)
WARNING: libffi.call/closure_fn2.c compilation failed to produce executable
FAIL: libffi.call/closure_fn3.c (test for excess errors)
WARNING: libffi.call/closure_fn3.c compilation failed to produce executable
FAIL: libffi.call/closure_fn4.c (test for excess errors)
WARNING: libffi.call/closure_fn4.c compilation failed to produce executable
FAIL: libffi.call/closure_fn5.c (test for excess errors)
WARNING: libffi.call/closure_fn5.c compilation failed to produce executable
FAIL: libffi.call/cls_12byte.c (test for excess errors)
WARNING: libffi.call/cls_12byte.c compilation failed to produce executable
FAIL: libffi.call/cls_16byte.c (test for excess errors)
WARNING: libffi.call/cls_16byte.c compilation failed to produce executable
FAIL: libffi.call/cls_18byte.c (test for excess errors)
WARNING: libffi.call/cls_18byte.c compilation failed to produce executable
FAIL: libffi.call/cls_19byte.c (test for excess errors)
WARNING: libffi.call/cls_19byte.c compilation failed to produce executable
FAIL: libffi.call/cls_1_1byte.c (test for excess errors)
WARNING: libffi.call/cls_1_1byte.c compilation failed to produce executable
FAIL: libffi.call/cls_20byte.c (test for excess errors)
WARNING: libffi.call/cls_20byte.c compilation failed to produce executable
FAIL: libffi.call/cls_20byte1.c (test for excess errors)
WARNING: libffi.call/cls_20byte1.c compilation failed to produce executable
FAIL: libffi.call/cls_24byte.c (test for excess errors)
WARNING: libffi.call/cls_24byte.c compilation failed to produce executable
FAIL: libffi.call/cls_2byte.c (test for excess errors)
WARNING: libffi.call/cls_2byte.c compilation failed to produce executable
FAIL: libffi.call/cls_3_1byte.c (test for excess errors)
WARNING: libffi.call/cls_3_1byte.c compilation failed to produce executable
FAIL: libffi.call/cls_3byte1.c (test for excess errors)
WARNING: libffi.call/cls_3byte1.c compilation failed to produce executable
FAIL: libffi.call/cls_3byte2.c (test for excess errors)
WARNING: libffi.call/cls_3byte2.c compilation failed to produce executable
FAIL: libffi.call/cls_4_1byte.c (test for excess errors)
WARNING: libffi.call/cls_4_1byte.c compilation failed to produce executable
FAIL: libffi.call/cls_4byte.c (test for excess errors)
WARNING: libffi.call/cls_4byte.c compilation failed to produce executable
FAIL: libffi.call/cls_5byte.c (test for excess errors)
WARNING: libffi.call/cls_5byte.c compilation failed to produce executable
FAIL: libffi.call/cls_64byte.c (test for excess errors)
WARNING: libffi.call/cls_64byte.c compilation failed to produce executable
FAIL: libffi.call/cls_6byte.c (test for excess errors)
WARNING: libffi.call/cls_6byte.c compilation failed to produce executable
FAIL: libffi.call/cls_7byte.c (test for excess errors)
WARNING: libffi.call/cls_7byte.c compilation failed to produce executable
FAIL: libffi.call/cls_8byte.c (test for excess errors)
WARNING: libffi.call/cls_8byte.c compilation failed to produce executable
FAIL: libffi.call/cls_9byte1.c (test for excess errors)
WARNING: libffi.call/cls_9byte1.c compilation failed to produce executable
FAIL: libffi.call/cls_9byte2.c (test for excess errors)
WARNING: libffi.call/cls_9byte2.c compilation failed to produce executable
FAIL: libffi.call/cls_align_double.c (test for excess errors)
WARNING: libffi.call/cls_align_double.c compilation failed to produce executable
FAIL: libffi.call/cls_align_float.c (test for excess errors)
WARNING: libffi.call/cls_align_float.c compilation failed to produce executable
FAIL: libffi.call/cls_align_longdouble.c (test for excess errors)
WARNING: libffi.call/cls_align_longdouble.c compilation failed to produce 
executable
FAIL: libffi.call/cls_align_pointer.c (test for excess errors)
WARNING: libffi.call/cls_align_pointer.c compilation failed to produce 
executable
FAIL: libffi.call/cls_align_sint16.c (test for excess errors)
WARNING: libffi.call/cls_align_sint16.c compilation failed to produce executable
FAIL: libffi.call/cls_align_sint32.c (test for excess errors)
WARNING: libffi.call/cls_align_sint32.c compilation failed to produce executable
FAIL: libffi.call/cls_align_sint64.c (test for excess errors)
WARNING: libffi.call/cls_align_sint64.c compilation failed to produce executable
FAIL: libffi.call/cls_align_uint16.c (test for excess errors)
WARNING: libffi.call/cls_align_uint16.c compilation failed to produce executable
FAIL: libffi.call/cls_align_uint32.c (test for excess errors)
WARNING: libffi.call/cls_align_uint32.c compilation failed to produce executable
FAIL: l

Results for 4.0.0 20050125 (experimental) (Debian 4.0-0pre5) testsuite on ia64-unknown-linux-gnu

2005-01-31 Thread Matthias Klose
LAST_UPDATED: Tue Jan 25 23:51:29 UTC 2005

Native configuration is ia64-unknown-linux-gnu

=== g++ tests ===


Running target unix
FAIL: g++.dg/opt/longbranch1.C (test for excess errors)
WARNING: g++.old-deja/g++.mike/p10769a.C compilation failed to produce 
executable
XPASS: g++.old-deja/g++.other/init5.C execution test
FAIL: g++.old-deja/g++.robertl/eb132.C (test for excess errors)
FAIL: g++.old-deja/g++.robertl/eb73.C (test for excess errors)

=== g++ Summary ===

# of expected passes10165
# of unexpected failures3
# of unexpected successes   1
# of expected failures  71
# of unsupported tests  90
/build/buildd/gcc-4.0-4.0ds4/build/gcc/testsuite/../g++  version 4.0.0 20050125 
(experimental) (Debian 4.0-0pre5)

=== gcc tests ===


Running target unix
FAIL: gcc.c-torture/execute/20030928-1.c compilation,  -O1 
UNRESOLVED: gcc.c-torture/execute/20030928-1.c execution,  -O1 
FAIL: gcc.c-torture/execute/20030928-1.c compilation,  -O2 
UNRESOLVED: gcc.c-torture/execute/20030928-1.c execution,  -O2 
FAIL: gcc.c-torture/execute/20030928-1.c compilation,  -O3 -fomit-frame-pointer 
UNRESOLVED: gcc.c-torture/execute/20030928-1.c execution,  -O3 
-fomit-frame-pointer 
FAIL: gcc.c-torture/execute/20030928-1.c compilation,  -O3 -fomit-frame-pointer 
-funroll-loops 
UNRESOLVED: gcc.c-torture/execute/20030928-1.c execution,  -O3 
-fomit-frame-pointer -funroll-loops 
FAIL: gcc.c-torture/execute/20030928-1.c compilation,  -O3 -fomit-frame-pointer 
-funroll-all-loops -finline-functions 
UNRESOLVED: gcc.c-torture/execute/20030928-1.c execution,  -O3 
-fomit-frame-pointer -funroll-all-loops -finline-functions 
FAIL: gcc.c-torture/execute/20030928-1.c compilation,  -O3 -g 
UNRESOLVED: gcc.c-torture/execute/20030928-1.c execution,  -O3 -g 
FAIL: gcc.c-torture/execute/20030928-1.c compilation,  -Os 
UNRESOLVED: gcc.c-torture/execute/20030928-1.c execution,  -Os 
XPASS: gcc.dg/tree-ssa/loop-1.c scan-assembler-times foo 5
XPASS: gcc.dg/vect/vect-22.c scan-tree-dump-times vectorized 3 loops 1
XPASS: gcc.dg/vect/vect-44.c scan-tree-dump-times Alignment of access forced 
using peeling 1
XPASS: gcc.dg/vect/vect-50.c scan-tree-dump-times Alignment of access forced 
using peeling 1
XPASS: gcc.dg/vect/vect-54.c scan-tree-dump-times Alignment of access forced 
using peeling 1
XPASS: gcc.dg/vect/vect-58.c scan-tree-dump-times Alignment of access forced 
using peeling 1

=== gcc Summary ===

# of expected passes31761
# of unexpected failures7
# of unexpected successes   6
# of expected failures  124
# of unresolved testcases   7
# of untested testcases 28
# of unsupported tests  450
/build/buildd/gcc-4.0-4.0ds4/build/gcc/xgcc  version 4.0.0 20050125 
(experimental) (Debian 4.0-0pre5)

=== gfortran tests ===


Running target unix
XPASS: gfortran.dg/ret_pointer_1.f90  -O0  execution test
XPASS: gfortran.dg/ret_pointer_1.f90  -O1  execution test
XPASS: gfortran.dg/ret_pointer_1.f90  -O2  execution test
XPASS: gfortran.dg/ret_pointer_1.f90  -O3 -fomit-frame-pointer  execution test
XPASS: gfortran.dg/ret_pointer_1.f90  -O3 -fomit-frame-pointer -funroll-loops  
execution test
XPASS: gfortran.dg/ret_pointer_1.f90  -O3 -fomit-frame-pointer 
-funroll-all-loops -finline-functions  execution test
XPASS: gfortran.dg/ret_pointer_1.f90  -O3 -g  execution test
XPASS: gfortran.dg/ret_pointer_1.f90  -Os  execution test
FAIL: gfortran.fortran-torture/execute/forall_3.f90 execution,  -O0 
FAIL: gfortran.fortran-torture/execute/forall_3.f90 execution,  -O1 
FAIL: gfortran.fortran-torture/execute/forall_3.f90 execution,  -O2 
FAIL: gfortran.fortran-torture/execute/forall_3.f90 execution,  -O3 
-fomit-frame-pointer 
FAIL: gfortran.fortran-torture/execute/forall_3.f90 execution,  -O3 
-fomit-frame-pointer -funroll-loops 
FAIL: gfortran.fortran-torture/execute/forall_3.f90 execution,  -O3 
-fomit-frame-pointer -funroll-all-loops -finline-functions 
FAIL: gfortran.fortran-torture/execute/forall_3.f90 execution,  -O3 -g 
FAIL: gfortran.fortran-torture/execute/forall_3.f90 execution,  -Os 

=== gfortran Summary ===

# of expected passes5193
# of unexpected failures8
# of unexpected successes   8
# of expected failures  18
# of unsupported tests  8
/build/buildd/gcc-4.0-4.0ds4/build/gcc/testsuite/../gfortran  version 4.0.0 
20050125 (experimental) (Debian 4.0-0pre5)

=== objc tests ===


Running target unix

=== objc Summary ===

# of expected passes1530
# of unsupported tests  11
/build/buildd/gcc-4.0-4.0ds4/build/gcc/xgcc  version 4.0.0 20050125 
(experimental) (Debian 4.0-0pre5)

=== libffi tests ===


Running target unix

=== libffi Summary ===

# of expected passes216
# of unsupported tests  2
=== libjava tests ===



Bug#292961: g++-3.3: g++ -- vastly uninformative error message

2005-01-31 Thread Greg Kochanski

Which seems like an acceptable error message. Unfortunately, it is
rather likely that this gets fixed in 3.3, too.

How about this variant that defines inverse() ?
$ g++ -c bug.c
bug.c: In function `void c_area(const xform_split&, const box&, const 
box&)':
bug.c:32: error: parse error before `,' token
$

class ltransform {
public:
};
class   box {
public:
box insidebox() const;
};
class parallelogram {
public:
parallelogram(const ltransform& b, const box& x);
box insidebox() const;
};
box inverse_image(const box& db1, const ltransform& fwd);
ltransform inverse(const ltransform& x);
struct xform_split  {
ltransform fwd;
ltransform back;
};

void c_area(const xform_split &xf, const box& databox0, const box& databox1)
{
 const box box0inOUTin(
parallelogram(inverse(xf.back), databox0).insidebox());
 const box lc(inverse_image(databox1, xf.fwd));
}

--
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]


[Bug java/9157] SEGV on bad java source

2005-01-31 Thread cvs-commit at gcc dot gnu dot org

--- Additional Comments From cvs-commit at gcc dot gnu dot org  2005-02-01 
02:37 ---
Subject: Bug 9157

CVSROOT:/cvs/gcc
Module name:gcc
Changes by: [EMAIL PROTECTED]   2005-02-01 02:36:36

Modified files:
gcc/java   : ChangeLog parse.y 

Log message:
PR java/9157
* parse.y (build_string_concatenation): Remove redundant if.
(patch_conditional_expr): Attempt to patch_string() the condition
of a ?: as well, in addition to its other operands.

Patches:
http://gcc.gnu.org/cgi-bin/cvsweb.cgi/gcc/gcc/java/ChangeLog.diff?cvsroot=gcc&r1=1.1537&r2=1.1538
http://gcc.gnu.org/cgi-bin/cvsweb.cgi/gcc/gcc/java/parse.y.diff?cvsroot=gcc&r1=1.527&r2=1.528



-- 


http://gcc.gnu.org/bugzilla/show_bug.cgi?id=9157

--- You are receiving this mail because: ---
You are on the CC list for the bug, or are watching someone who is.


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]



[Bug java/9157] SEGV on bad java source

2005-01-31 Thread pinskia at gcc dot gnu dot org

--- Additional Comments From pinskia at gcc dot gnu dot org  2005-02-01 
04:06 ---
Fixed.

-- 
   What|Removed |Added

 Status|NEW |RESOLVED
 Resolution||FIXED
   Target Milestone|--- |4.0.0


http://gcc.gnu.org/bugzilla/show_bug.cgi?id=9157

--- You are receiving this mail because: ---
You are on the CC list for the bug, or are watching someone who is.


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]



Doc-less GCC builds?

2005-01-31 Thread Joel Aelwyn
Am I just being dense, or is there *no* way to effectively turn off doc
builds in the GCC packages as of 3.3/3.4? This is not a concern for normal
builds, but it can be extremely useful when, say, trying to bootstrap a
compiler for a new port - since the GCC build itself (mostly) requires only
things that are either base, or have very short dependancy chains - but
the doc build requires texinfo, doxygen, and graphviz, which between them
appear to pull in half the known universe.

Ok, not really, that would be KDE or Gnome, but it's still a huge variety
of things which are unlikely to be easily worked with if you're at the
stage of "let's build a compiler" if you're tracing Build-Depends rather
than just Depends.

I'm hoping I'm just being dense here... help?
-- 
Joel Aelwyn <[EMAIL PROTECTED]>   ,''`.
 : :' :
 `. `'
   `-


signature.asc
Description: Digital signature