Al-Manahel Newsletter List Unsubscription

2006-09-07 Thread munir

The removal of the email address:

[EMAIL PROTECTED]

>From the mailing list: 

Al-Manahel Newsletter List 

is all set.

Date of this removal: Thu Sep  7 00:26:26 2006

Please save this email message for future reference.

---

You may automatically subscribe from this list at any time by 
visiting the following URL:



If the above URL is inoperable, make sure that you have copied the 
entire address. Some mail readers will wrap a long URL and thus break
this automatic unsubscribe mechanism. 

You may also change your subscription by visiting this list's main screen: 



If you're still having trouble, please contact the list owner at: 



The following physical address is associated with this mailing list: 



- 



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



Welcome to Al-Manahel Newsletter List

2006-09-07 Thread munir

The subscription of the email address: 

[EMAIL PROTECTED]

To the mailing list: 

Al-Manahel Newsletter List

is all set. Thanks for subscribing! 

Date of this subscription: Thu Sep  7 00:37:02 2006

Please save this email message for future reference. 

---

You may automatically unsubscribe from this list at any time by 
visiting the following URL:



If the above URL is inoperable, make sure that you have copied the 
entire address. Some mail readers will wrap a long URL and thus break
this automatic unsubscribe mechanism. 

You may also change your subscription by visiting this list's main screen: 



If you're still having trouble, please contact the list owner at: 



The following physical address is associated with this mailing list: 



- 


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



Bug#385182: FTBFS with GCC 4.2: ... cannot appear in a constant-expression

2006-09-07 Thread Martin Michlmayr
* Mikael Zayenz Lagerkvist <[EMAIL PROTECTED]> [2006-08-30 09:52]:
> If this is truly a removed feature, then a bug-report should be filed
> also for the documentation of GCC.

FWIW, this gcc 4.2 bug has been fixed in SVN now.
-- 
Martin Michlmayr
http://www.cyrius.com/


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



Bug#385974: gcj-4.1 & kfreebsd

2006-09-07 Thread Petr Salinger

I will try to rebuild with attached patch, but it takes some time ...


Rebuild finished, it looks OK.
Please, could you apply gcj41c.diff (it contains also initial gcc41.diff) 
and regenerate debian/control for next upload.


Many thanks.

Petr



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



Al-Manahel Newsletter List Unsubscription

2006-09-07 Thread munir

The removal of the email address:

[EMAIL PROTECTED]

>From the mailing list: 

Al-Manahel Newsletter List 

is all set.

Date of this removal: Thu Sep  7 04:07:55 2006

Please save this email message for future reference.

---

You may automatically subscribe from this list at any time by 
visiting the following URL:



If the above URL is inoperable, make sure that you have copied the 
entire address. Some mail readers will wrap a long URL and thus break
this automatic unsubscribe mechanism. 

You may also change your subscription by visiting this list's main screen: 



If you're still having trouble, please contact the list owner at: 



The following physical address is associated with this mailing list: 



- 



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



Bug#386430: gcj-4.1: Dangling gcj man symlink

2006-09-07 Thread Jan Medlock
Package: gcj-4.1
Version: 4.1.1-13
Severity: normal


gcj-4.1 symlinks /usr/share/man/man1/i486-linux-gnu-gcj-4.1.1 to the
non-existant man page /usr/share/man/man1/gcj-4.1.1.

Perhaps this should be a symlink to
/usr/share/man/man1/gcj-wrapper-4.1.1.gz (with a corresponding '.gz'
at the end of the name of the symlink).

(I can also confirm that on powerpc, 'i486' in the symlink name is
replaced with 'powerpc', but the symlink still points to the same
non-existant man page.)

-- System Information:
Debian Release: testing/unstable
  APT prefers unstable
  APT policy: (500, 'unstable'), (500, 'testing')
Architecture: i386 (i686)
Shell:  /bin/sh linked to /bin/bash
Kernel: Linux 2.6.17
Locale: LANG=en_US.UTF-8, LC_CTYPE=en_US.UTF-8 (charmap=UTF-8)

Versions of packages gcj-4.1 depends on:
ii  gcc-4.1  4.1.1-13The GNU C compiler
ii  gcj-4.1-base 4.1.1-13The GNU Compiler Collection (gcj b
ii  gij-4.1  4.1.1-13The GNU Java bytecode interpreter
ii  java-common  0.25Base of all Java packages
ii  libc62.3.6.ds1-4 GNU C Library: Shared libraries
ii  libc6-dev2.3.6.ds1-4 GNU C Library: Development Librari
ii  libgcc1  1:4.1.1-13  GCC support library
ii  libgcj7-dev  4.1.1-13Java development headers and stati
ii  libgcj7-jar  4.1.1-13Java runtime library for use with 
ii  zlib1g   1:1.2.3-13  compression library - runtime

Versions of packages gcj-4.1 recommends:
ii  fastjar   1:4.1.1-13 Jar creation utility

-- no debconf information


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



Bug#386443: gcj-4.1: UTF-16 endianness differs between gcj and Sun JDK

2006-09-07 Thread Marcus Better
Package: gcj-4.1
Version: 4.1.1-10
Severity: normal

This program gives different results with Sun's JDK (sun-java5-jdk
1.5.0-08-1) and gcj:

 Test.java 
import java.io.*;

public class Test
{
public static void main(String[] args) throws java.io.IOException
{
OutputStreamWriter o = new OutputStreamWriter(System.out, "UTF-16");
o.write("Hello!");
o.flush();
}
}
===

According to Sun's API docs
  http://java.sun.com/j2se/1.5.0/docs/api/java/nio/charset/Charset.html
the UTF-16 encoding is supposed to default to big-endian. This is also
what I get when running with Sun's JVM:

: feff 0048 0065 006c 006c 006f 0021   ...H.e.l.l.o.!

But when I run the same program with gij, I get little-endian output:

: fffe 4800 6500 6c00 6c00 6f00 2100   ..H.e.l.l.o.!.

In both cases I executed the same .class file, compiled with the Sun
JDK.

-- System Information:
Debian Release: testing/unstable
  APT prefers testing
  APT policy: (990, 'testing'), (500, 'unstable'), (500, 'stable'), (1, 
'experimental')
Architecture: i386 (i686)
Shell:  /bin/sh linked to /bin/bash
Kernel: Linux 2.6.17-1-686
Locale: LANG=sv_SE.UTF-8, LC_CTYPE=sv_SE.UTF-8 (charmap=UTF-8)

Versions of packages gcj-4.1 depends on:
ii  gcc-4.1  4.1.1-9 The GNU C compiler
ii  gcj-4.1-base 4.1.1-10The GNU Compiler Collection (gcj b
ii  gij-4.1  4.1.1-10The GNU Java bytecode interpreter
ii  java-common  0.25Base of all Java packages
ii  libc62.3.6.ds1-4 GNU C Library: Shared libraries
ii  libc6-dev2.3.6.ds1-4 GNU C Library: Development Librari
ii  libgcc1  1:4.1.1-9   GCC support library
ii  libgcj7  4.1.1-10Java runtime library for use with 
ii  libgcj7-dev  4.1.1-10Java development headers and stati
ii  libgcj7-jar  4.1.1-10Java runtime library for use with 
ii  zlib1g   1:1.2.3-13  compression library - runtime

Versions of packages gcj-4.1 recommends:
ii  fastjar   1:4.1.1-11 Jar creation utility

-- no debconf information


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



Processed: gcj-4.1: UTF-16 endianness differs between gcj and Sun JDK

2006-09-07 Thread Debian Bug Tracking System
Processing commands for [EMAIL PROTECTED]:

> forwarded 386443 http://gcc.gnu.org/bugzilla/show_bug.cgi?id=28977
Bug#386443: gcj-4.1: UTF-16 endianness differs between gcj and Sun JDK
Noted your statement that Bug has been forwarded to 
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=28977.

> tags 386443 upstream
Bug#386443: gcj-4.1: UTF-16 endianness differs between gcj and Sun JDK
There were no tags set.
Tags added: upstream

> 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#386443: Fwd: Re: Endianness in UTF-16 encoding

2006-09-07 Thread Marcus Better

Subject: Endianness in UTF-16 encoding
From: Tom Tromey <[EMAIL PROTECTED]>
Date: Thu, 07 Sep 2006 19:20:41 +0200
Newgroup: gmane.linux.debian.devel.java

> "Marcus" == Marcus Better <[EMAIL PROTECTED]> writes:

Marcus> According to Sun's API docs (Charset class), the UTF-16
Marcus> encoding is supposed to default to big-endian.

Interesting.

Marcus> What confuses me is that I checked the Classpath source for
Marcus> OutputStreamWriter, and it does the right thing, i.e., big-endian:

Classpath and libgcj differ a bit here.
Most likely this is happening because libgcj is using the glibc iconv
to do this conversion, and glibc is probably picking the native
endianness.
 
Could you file this in the gcc bugzilla?

Tom




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



Welcome to Al-Manahel Newsletter List

2006-09-07 Thread munir

The subscription of the email address: 

[EMAIL PROTECTED]

To the mailing list: 

Al-Manahel Newsletter List

is all set. Thanks for subscribing! 

Date of this subscription: Thu Sep  7 13:37:21 2006

Please save this email message for future reference. 

---

You may automatically unsubscribe from this list at any time by 
visiting the following URL:



If the above URL is inoperable, make sure that you have copied the 
entire address. Some mail readers will wrap a long URL and thus break
this automatic unsubscribe mechanism. 

You may also change your subscription by visiting this list's main screen: 



If you're still having trouble, please contact the list owner at: 



The following physical address is associated with this mailing list: 



- 


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



Results for 4.0.4 20060904 (prerelease) (Debian 4.0.3-7) testsuite on x86_64-pc-linux-gnu

2006-09-07 Thread Matthias Klose
LAST_UPDATED: Mon Sep  4 00:30:28 UTC 2006 (revision 116676)

Native configuration is x86_64-pc-linux-gnu

=== g++ tests ===


Running target unix
XPASS: g++.old-deja/g++.other/init5.C execution test

=== g++ Summary for unix ===

# of expected passes11526
# of unexpected successes   1
# of expected failures  69
# of unsupported tests  85

Running target unix/-m32
XPASS: g++.old-deja/g++.other/init5.C execution test

=== g++ Summary for unix/-m32 ===

# of expected passes11611
# of unexpected successes   1
# of expected failures  69
# of unsupported tests  56

=== g++ Summary ===

# of expected passes23137
# of unexpected successes   2
# of expected failures  138
# of unsupported tests  141
/build/buildd/gcc-4.0-4.0.3/build/gcc/testsuite/g++/../../g++  version 4.0.4 
20060904 (prerelease) (Debian 4.0.3-7)

=== gcc tests ===


Running target unix
XPASS: gcc.dg/vect/vect-22.c scan-tree-dump-times vectorized 3 loops 1

=== gcc Summary for unix ===

# of expected passes35411
# of unexpected successes   1
# of expected failures  98
# of untested testcases 28
# of unsupported tests  413

Running target unix/-m32
FAIL: gcc.dg/cleanup-10.c execution test
FAIL: gcc.dg/cleanup-11.c execution test
FAIL: gcc.dg/cleanup-8.c execution test
FAIL: gcc.dg/cleanup-9.c execution test
FAIL: gcc.dg/vect/pr20122.c scan-tree-dump-times vectorized 1 loops 2
XPASS: gcc.dg/vect/vect-22.c scan-tree-dump-times vectorized 3 loops 1

=== gcc Summary for unix/-m32 ===

# of expected passes35669
# of unexpected failures5
# of unexpected successes   1
# of expected failures  94
# of untested testcases 28
# of unsupported tests  328

=== gcc Summary ===

# of expected passes71080
# of unexpected failures5
# of unexpected successes   2
# of expected failures  192
# of untested testcases 56
# of unsupported tests  741
/build/buildd/gcc-4.0-4.0.3/build/gcc/xgcc  version 4.0.4 20060904 (prerelease) 
(Debian 4.0.3-7)

=== libffi tests ===


Running target unix

=== libffi Summary for unix ===

# of expected passes219
# of unsupported tests  2

Running target unix/-m32

=== libffi Summary for unix/-m32 ===

# of expected passes219
# of unsupported tests  2

=== libffi Summary ===

# of expected passes438
# of unsupported tests  4
=== libmudflap tests ===


Running target unix

=== libmudflap Summary for unix ===

# of expected passes1288

Running target unix/-m32
FAIL: libmudflap.cth/pass40-frag.c execution test
FAIL: libmudflap.cth/pass40-frag.c output pattern test
FAIL: libmudflap.cth/pass40-frag.c (-O2) execution test
FAIL: libmudflap.cth/pass40-frag.c (-O2) output pattern test
FAIL: libmudflap.cth/pass40-frag.c (-O3) execution test
FAIL: libmudflap.cth/pass40-frag.c (-O3) output pattern test

=== libmudflap Summary for unix/-m32 ===

# of expected passes1282
# of unexpected failures6

=== libmudflap Summary ===

# of expected passes2570
# of unexpected failures6
=== libstdc++ tests ===


Running target unix
XPASS: 22_locale/locale/cons/12658_thread-1.cc execution test
XPASS: 26_numerics/cmath/c99_classification_macros_c.cc (test for excess errors)
XPASS: 27_io/fpos/14320-1.cc execution test

=== libstdc++ Summary for unix ===

# of expected passes3713
# of unexpected successes   3
# of expected failures  11

Running target unix/-m32
XPASS: 22_locale/locale/cons/12658_thread-1.cc execution test
FAIL: 22_locale/messages/members/char/1.cc execution test
FAIL: 22_locale/messages/members/char/2.cc execution test
FAIL: 22_locale/messages/members/char/wrapped_env.cc execution test
FAIL: 22_locale/messages/members/char/wrapped_locale.cc execution test
FAIL: 22_locale/messages_byname/named_equivalence.cc execution test
XPASS: 26_numerics/cmath/c99_classification_macros_c.cc (test for excess errors)

=== libstdc++ Summary for unix/-m32 ===

# of expected passes3708
# of unexpected failures5
# of unexpected successes   2
# of expected failures  12

=== libstdc++ Summary ===

# of expected passes7421
# of unexpected failures5
# of unexpected successes   5
# of expected failures  23

Compiler version: 4.0.4 20060904 (prerelease) (Debian 4.0.3-7) 
Platform: x86_64-pc-linux-gnu
configure flags: -v --prefix=/usr --enable-shared --with-system-zlib 
--libexecdir=/usr/lib --without-included-gettext --enable-threads=posix 

Results for 4.0.4 20060904 (prerelease) (Debian 4.0.3-7) testsuite on alpha-unknown-linux-gnu

2006-09-07 Thread Matthias Klose
LAST_UPDATED: Mon Sep  4 00:30:28 UTC 2006 (revision 116676)

Native configuration is alpha-unknown-linux-gnu

=== libffi tests ===


Running target unix

=== libffi Summary ===

# of expected passes219
# of unsupported tests  2
=== libmudflap tests ===


Running target unix
FAIL: libmudflap.c/pass49-frag.c execution test
FAIL: libmudflap.c/pass49-frag.c output pattern test
FAIL: libmudflap.c/pass49-frag.c (-static) execution test
FAIL: libmudflap.c/pass49-frag.c (-static) output pattern test
FAIL: libmudflap.c/pass49-frag.c (-O2) execution test
FAIL: libmudflap.c/pass49-frag.c (-O2) output pattern test
FAIL: libmudflap.c/pass49-frag.c (-O3) execution test
FAIL: libmudflap.c/pass49-frag.c (-O3) output pattern test
WARNING: program timed out.
FAIL: libmudflap.cth/pass40-frag.c execution test
WARNING: program timed out.
FAIL: libmudflap.cth/pass40-frag.c (-O2) execution test
FAIL: libmudflap.cth/pass40-frag.c (-O2) output pattern test
WARNING: program timed out.
FAIL: libmudflap.cth/pass40-frag.c (-O3) execution test

=== libmudflap Summary ===

# of expected passes1276
# of unexpected failures12
=== libstdc++ tests ===


Running target unix
FAIL: abi_check
XPASS: 22_locale/locale/cons/12658_thread-1.cc execution test
XPASS: 26_numerics/cmath/c99_classification_macros_c.cc (test for excess errors)
XPASS: 27_io/fpos/14320-1.cc execution test

=== libstdc++ Summary ===

# of expected passes3712
# of unexpected failures1
# of unexpected successes   3
# of expected failures  11
=== g++ tests ===


Running target unix
FAIL: g++.dg/tls/static-1.C execution test
XPASS: g++.old-deja/g++.other/init5.C execution test

=== g++ Summary ===

# of expected passes11509
# of unexpected failures1
# of unexpected successes   1
# of expected failures  69
# of unsupported tests  95
/build/buildd/gcc-4.0-4.0.3/build/gcc/testsuite/g++/../../g++  version 4.0.4 
20060904 (prerelease) (Debian 4.0.3-7)

=== gcc tests ===


Running target unix
FAIL: gcc.c-torture/execute/ieee/2320-1.c execution,  -O0 
FAIL: gcc.c-torture/execute/ieee/2320-1.c execution,  -O1 
FAIL: gcc.c-torture/execute/ieee/2320-1.c execution,  -O2 
FAIL: gcc.c-torture/execute/ieee/2320-1.c execution,  -O3 
-fomit-frame-pointer 
FAIL: gcc.c-torture/execute/ieee/2320-1.c execution,  -O3 -g 
FAIL: gcc.c-torture/execute/ieee/2320-1.c execution,  -Os 
FAIL: gcc.c-torture/execute/ieee/mul-subnormal-single-1.c execution,  -O0 
FAIL: gcc.c-torture/execute/ieee/mul-subnormal-single-1.c execution,  -O1 
FAIL: gcc.c-torture/execute/ieee/mul-subnormal-single-1.c execution,  -O2 
FAIL: gcc.c-torture/execute/ieee/mul-subnormal-single-1.c execution,  -O3 
-fomit-frame-pointer 
FAIL: gcc.c-torture/execute/ieee/mul-subnormal-single-1.c execution,  -O3 
-fomit-frame-pointer -funroll-loops 
FAIL: gcc.c-torture/execute/ieee/mul-subnormal-single-1.c execution,  -O3 
-fomit-frame-pointer -funroll-all-loops -finline-functions 
FAIL: gcc.c-torture/execute/ieee/mul-subnormal-single-1.c execution,  -O3 -g 
FAIL: gcc.c-torture/execute/ieee/mul-subnormal-single-1.c execution,  -Os 
FAIL: gcc.dg/vect/pr18536.c (test for excess errors)
UNRESOLVED: gcc.dg/vect/pr18536.c compilation failed to produce executable
XPASS: gcc.dg/vect/vect-85.c scan-tree-dump-times vectorized 1 loops 1
XPASS: gcc.dg/vect/vect-86.c scan-tree-dump-times vectorized 1 loops 1
XPASS: gcc.dg/vect/vect-87.c scan-tree-dump-times vectorized 1 loops 1
XPASS: gcc.dg/vect/vect-87.c scan-tree-dump-times Alignment of access forced 
using peeling 1
XPASS: gcc.dg/vect/vect-88.c scan-tree-dump-times vectorized 1 loops 1
XPASS: gcc.dg/vect/vect-88.c scan-tree-dump-times Alignment of access forced 
using peeling 1

=== gcc Summary ===

# of expected passes35020
# of unexpected failures15
# of unexpected successes   6
# of expected failures  88
# of unresolved testcases   1
# of untested testcases 28
# of unsupported tests  541
/build/buildd/gcc-4.0-4.0.3/build/gcc/xgcc  version 4.0.4 20060904 (prerelease) 
(Debian 4.0.3-7)


Compiler version: 4.0.4 20060904 (prerelease) (Debian 4.0.3-7) 
Platform: alpha-unknown-linux-gnu
configure flags: -v --prefix=/usr --enable-shared --with-system-zlib 
--libexecdir=/usr/lib --without-included-gettext --enable-threads=posix 
--enable-nls --program-suffix=-4.0 --enable-__cxa_atexit --enable-clocale=gnu 
--enable-libstdcxx-debug --enable-java-awt=gtk --enable-gtk-cairo 
--with-java-home=/usr/lib/jvm/java-1.4.2-gcj-4.0-1.4.2.0/jre 
--enable-checking=release alpha-linux-gnu --enable-languages=c,c++,java
BOOT_CFLAGS=-O2


Build Dependencies:
Desired=Unknown/Install/Remove/Purge/Hold
| Status=Not/Installed/Config-files/Unpacked/Failed-config/Half-installed
|/ Err?=(

Results for 4.0.4 20060904 (prerelease) (Debian 4.0.3-7) testsuite on arm-unknown-linux-gnu

2006-09-07 Thread Matthias Klose
LAST_UPDATED: Mon Sep  4 00:30:28 UTC 2006 (revision 116676)

Native configuration is arm-unknown-linux-gnu

=== libffi tests ===


Running target unix
XPASS: libffi.call/closure_fn0.c execution test
XPASS: libffi.call/closure_fn1.c execution test
XPASS: libffi.call/closure_fn2.c execution test
XPASS: libffi.call/closure_fn3.c execution test
XPASS: libffi.call/closure_fn4.c execution test
XPASS: libffi.call/closure_fn5.c execution test
XPASS: libffi.call/cls_12byte.c execution test
XPASS: libffi.call/cls_16byte.c execution test
XPASS: libffi.call/cls_18byte.c execution test
XPASS: libffi.call/cls_19byte.c execution test
XPASS: libffi.call/cls_20byte.c execution test
XPASS: libffi.call/cls_20byte1.c execution test
XPASS: libffi.call/cls_24byte.c execution test
XPASS: libffi.call/cls_2byte.c execution test
XPASS: libffi.call/cls_3_1byte.c execution test
XPASS: libffi.call/cls_3byte1.c execution test
XPASS: libffi.call/cls_3byte2.c execution test
XPASS: libffi.call/cls_4_1byte.c execution test
XPASS: libffi.call/cls_4byte.c execution test
XPASS: libffi.call/cls_5byte.c execution test
FAIL: libffi.call/cls_5byte.c output pattern test, is 127 120 1 128 9 160: 255 
129 161
XPASS: libffi.call/cls_64byte.c execution test
XPASS: libffi.call/cls_6byte.c execution test
FAIL: libffi.call/cls_6byte.c output pattern test, is 127 120 1 128 128 32521 
216 137: 255 32641 217 9
XPASS: libffi.call/cls_7byte.c execution test
XPASS: libffi.call/cls_8byte.c execution test
XPASS: libffi.call/cls_9byte1.c execution test
XPASS: libffi.call/cls_9byte2.c execution test
XPASS: libffi.call/cls_align_double.c execution test
XPASS: libffi.call/cls_align_float.c execution test
XPASS: libffi.call/cls_align_longdouble.c execution test
XPASS: libffi.call/cls_align_pointer.c execution test
XPASS: libffi.call/cls_align_sint16.c execution test
FAIL: libffi.call/cls_align_sint16.c output pattern test, is 12 4951 127 104 13 
104: 116 4964 231
XPASS: libffi.call/cls_align_sint32.c execution test
XPASS: libffi.call/cls_align_sint64.c execution test
XPASS: libffi.call/cls_align_uint16.c execution test
FAIL: libffi.call/cls_align_uint16.c output pattern test, is 12 4951 127 104 13 
88: 116 4964 215
XPASS: libffi.call/cls_align_uint32.c execution test
XPASS: libffi.call/cls_align_uint64.c execution test
XPASS: libffi.call/cls_double.c execution test
XPASS: libffi.call/cls_float.c execution test
XPASS: libffi.call/cls_multi_schar.c execution test
XPASS: libffi.call/cls_multi_sshort.c execution test
XPASS: libffi.call/cls_multi_sshortchar.c execution test
XPASS: libffi.call/cls_multi_uchar.c execution test
XPASS: libffi.call/cls_multi_ushort.c execution test
XPASS: libffi.call/cls_multi_ushortchar.c execution test
XPASS: libffi.call/cls_schar.c execution test
XPASS: libffi.call/cls_sint.c execution test
XPASS: libffi.call/cls_sshort.c execution test
XPASS: libffi.call/cls_uchar.c execution test
XPASS: libffi.call/cls_uint.c execution test
XPASS: libffi.call/cls_ulonglong.c execution test
XPASS: libffi.call/cls_ushort.c execution test
XPASS: libffi.call/nested_struct.c execution test
XPASS: libffi.call/nested_struct1.c execution test
XPASS: libffi.call/nested_struct2.c execution test
XPASS: libffi.call/nested_struct3.c execution test
XPASS: libffi.call/problem1.c execution test
FAIL: libffi.call/struct3.c execution test
XPASS: libffi.special/unwindtest.cc  -shared-libgcc -lstdc++ execution test

=== libffi Summary ===

# of expected passes155
# of unexpected failures5
# of unexpected successes   57
# of expected failures  1
# of unsupported tests  2
=== libmudflap tests ===


Running target unix
WARNING: program timed out.
FAIL: libmudflap.cth/pass40-frag.c execution test
FAIL: libmudflap.cth/pass40-frag.c output pattern test
WARNING: program timed out.
FAIL: libmudflap.cth/pass40-frag.c (-static -DSTATIC) execution test
FAIL: libmudflap.cth/pass40-frag.c (-static -DSTATIC) output pattern test
WARNING: program timed out.
FAIL: libmudflap.cth/pass40-frag.c (-O2) execution test
FAIL: libmudflap.cth/pass40-frag.c (-O2) output pattern test
WARNING: program timed out.
FAIL: libmudflap.cth/pass40-frag.c (-O3) execution test
FAIL: libmudflap.cth/pass40-frag.c (-O3) output pattern test

=== libmudflap Summary ===

# of expected passes1280
# of unexpected failures8
=== libstdc++ tests ===


Running target unix
WARNING: program timed out.
FAIL: 22_locale/locale/cons/12658_thread-2.cc execution test
XPASS: 26_numerics/cmath/c99_classification_macros_c.cc (test for excess errors)
FAIL: 
tr1/4_metaprogramming/other_transformations/aligned_storage/aligned_storage.cc 
execution test
FAIL: tr1/4_metaprogramming/type_properties/is_empty/is_empty.cc execution test
FAIL: tr1/4_metaprogramming/type_properties/is_polymorphic/is_polymorphic.cc 
execution test

=== libstdc++ Summary ===

# of expected passes370

Results for 4.0.4 20060904 (prerelease) (Debian 4.0.3-7) testsuite on hppa-unknown-linux-gnu

2006-09-07 Thread Matthias Klose
LAST_UPDATED: Mon Sep  4 00:30:28 UTC 2006 (revision 116676)

Native configuration is hppa-unknown-linux-gnu

=== gcc tests ===


Running target unix
XPASS: gcc.dg/const-elim-1.c scan-assembler-not L\$?C[^A-Z]
XPASS: gcc.dg/tree-ssa/loop-1.c scan-assembler-times foo 5

=== gcc Summary ===

# of expected passes34743
# of unexpected successes   2
# of expected failures  68
# of untested testcases 28
# of unsupported tests  508
/build/buildd/gcc-4.0-4.0.3/build/gcc/xgcc  version 4.0.4 20060904 (prerelease) 
(Debian 4.0.3-7)

=== libmudflap tests ===


Running target unix
FAIL: libmudflap.c/pass49-frag.c execution test
FAIL: libmudflap.c/pass49-frag.c output pattern test
FAIL: libmudflap.c/pass49-frag.c (-static) execution test
FAIL: libmudflap.c/pass49-frag.c (-static) output pattern test
FAIL: libmudflap.c/pass49-frag.c (-O2) execution test
FAIL: libmudflap.c/pass49-frag.c (-O2) output pattern test
FAIL: libmudflap.c/pass49-frag.c (-O3) execution test
FAIL: libmudflap.c/pass49-frag.c (-O3) output pattern test
WARNING: program timed out.
FAIL: libmudflap.cth/pass40-frag.c execution test
FAIL: libmudflap.cth/pass40-frag.c output pattern test
WARNING: program timed out.
FAIL: libmudflap.cth/pass40-frag.c (-static -DSTATIC) execution test
FAIL: libmudflap.cth/pass40-frag.c (-static -DSTATIC) output pattern test
WARNING: program timed out.
FAIL: libmudflap.cth/pass40-frag.c (-O2) execution test
FAIL: libmudflap.cth/pass40-frag.c (-O2) output pattern test
WARNING: program timed out.
FAIL: libmudflap.cth/pass40-frag.c (-O3) execution test
FAIL: libmudflap.cth/pass40-frag.c (-O3) output pattern test

=== libmudflap Summary ===

# of expected passes1272
# of unexpected failures16

Compiler version: 4.0.4 20060904 (prerelease) (Debian 4.0.3-7) 
Platform: hppa-unknown-linux-gnu
configure flags: -v --prefix=/usr --enable-shared --with-system-zlib 
--libexecdir=/usr/lib --without-included-gettext --enable-threads=posix 
--enable-nls --program-suffix=-4.0 --enable-__cxa_atexit --enable-clocale=gnu 
--enable-checking=release hppa-linux-gnu --enable-languages=c
BOOT_CFLAGS=-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.17-2 The GNU assembler, linker and binary utilities


Patches that Debian applied in this version:

svn-updates:
  CVS updates from the 4.0 branch upto 20060904.

gcc-version:
  Add package identification to the gcc version string

gcc-textdomain:
  Set gettext's domain and textdomain to the versioned package name.

rename-info-files:
  Allow transformations on info file names. Reference the
  transformed info file names in the texinfo files.

libstdc++-pic:
  Build and install libstdc++_pic.a library.

libstdc++-doclink:
  adjust hrefs to point to the local documentation

amd64-specs:
  On x86-64 use 64bits mode assembly except with -m32.

gccbug:
  Use sensible-editor instead of vi as fallback editor

gccbug-posix:
  Make gccbug POSIX compliant (patch by David Weinehall)
  http://www.opengroup.org/onlinepubs/009695399/utilities/test.html

boehm-gc-nocheck:
  Disable running the boehm-gc testsuite. Hangs the buildd at least on hppa.

acats-expect:
  Run the ACATS testsuite using expect

fastjar-version:
  Append GCC version to the fastjar version string.

libstdc++-doxygen:
  libstdc++ doxygen docs: Set SHORT_NAMES to YES

arm-bigendian:

pr19877:
  Proposed patch to fix PR19877 (libgcj configury)

323016:
  Apply proposed patch for http://bugs.debian.org/323016

classpath-20050618:
  - update classpath awt, swing and xml parser for HTML support in swing.
  taken from classpath CVS HEAD 2005-06-18.
  - updates for gnu.xml and javax.swing.text.html.

classmap-path:
  Search classmap.db in /var/lib/gcj-4.0 (omitting the subminor version).

xml-update-20050930:
  classpath xml-update from 20050930

gcc-m68k-update:
  2005-07-24  Andreas Schwab  <[EMAIL PROTECTED]>
  
* config/m68k/m68k.md ("extendqidi2"): When source is an address
register use a word move.  Correct operand of ext.w in 68000 code.

libjava-awt-name:
  2005-05-12  Thomas Fitzsimmons  <[EMAIL PROTECTED]>
  
* Makefile.am (cond_gtk_gcjawt_ltlibrary): Rename libjawt.la
libgcjawt.la.

libjava-awt-peer-gtk:
  Fix a segfault on architectures where the size of a pointer is
  greater than the size of an integer, such as ia64.

libjava-dlsearch-path:
  Add /usr/lib/gcj-4.0 to the dlsearch path.

libjava-streamserializer:
  Fix Ubuntu #12744, bug in StreamSerializer, seen with eclipse-3.1

libjava-saxdriver-fix:
  Fix bug lin SAXDriver, needeed for eclipse's AntCompletionPro

Results for 4.0.4 20060904 (prerelease) (Debian 4.0.3-7) testsuite on i486-pc-linux-gnu

2006-09-07 Thread Matthias Klose
LAST_UPDATED: Mon Sep  4 00:30:28 UTC 2006 (revision 116676)

Native configuration is i486-pc-linux-gnu

=== g++ tests ===


Running target unix
XPASS: g++.old-deja/g++.other/init5.C execution test

=== g++ Summary for unix ===

# of expected passes11611
# of unexpected successes   1
# of expected failures  69
# of unsupported tests  56

Running target unix/-m64
XPASS: g++.old-deja/g++.other/init5.C execution test

=== g++ Summary for unix/-m64 ===

# of expected passes11526
# of unexpected successes   1
# of expected failures  69
# of unsupported tests  85

=== g++ Summary ===

# of expected passes23137
# of unexpected successes   2
# of expected failures  138
# of unsupported tests  141
/home/packages/gcc/4.0/gcc-4.0-4.0.3/build/gcc/testsuite/g++/../../g++  version 
4.0.4 20060904 (prerelease) (Debian 4.0.3-7)

=== gcc tests ===


Running target unix
FAIL: gcc.dg/cleanup-10.c execution test
FAIL: gcc.dg/cleanup-11.c execution test
FAIL: gcc.dg/cleanup-8.c execution test
FAIL: gcc.dg/cleanup-9.c execution test
FAIL: gcc.dg/vect/pr20122.c scan-tree-dump-times vectorized 1 loops 2
XPASS: gcc.dg/vect/vect-22.c scan-tree-dump-times vectorized 3 loops 1

=== gcc Summary for unix ===

# of expected passes35670
# of unexpected failures5
# of unexpected successes   1
# of expected failures  94
# of untested testcases 28
# of unsupported tests  328

Running target unix/-m64
XPASS: gcc.dg/vect/vect-22.c scan-tree-dump-times vectorized 3 loops 1
FAIL: gcc.misc-tests/linkage.c link
FAIL: gcc.target/i386/asm-1.c  (test for errors, line 4)

=== gcc Summary for unix/-m64 ===

# of expected passes35410
# of unexpected failures2
# of unexpected successes   1
# of expected failures  98
# of untested testcases 28
# of unsupported tests  413

=== gcc Summary ===

# of expected passes71080
# of unexpected failures7
# of unexpected successes   2
# of expected failures  192
# of untested testcases 56
# of unsupported tests  741
/home/packages/gcc/4.0/gcc-4.0-4.0.3/build/gcc/xgcc  version 4.0.4 20060904 
(prerelease) (Debian 4.0.3-7)

=== libffi tests ===


Running target unix

=== libffi Summary for unix ===

# of expected passes219
# of unsupported tests  2

Running target unix/-m64

=== libffi Summary for unix/-m64 ===

# of expected passes219
# of unsupported tests  2

=== libffi Summary ===

# of expected passes438
# of unsupported tests  4
=== libmudflap tests ===


Running target unix
FAIL: libmudflap.cth/pass40-frag.c execution test
FAIL: libmudflap.cth/pass40-frag.c output pattern test
FAIL: libmudflap.cth/pass40-frag.c (-O2) execution test
FAIL: libmudflap.cth/pass40-frag.c (-O2) output pattern test
FAIL: libmudflap.cth/pass40-frag.c (-O3) execution test
FAIL: libmudflap.cth/pass40-frag.c (-O3) output pattern test

=== libmudflap Summary for unix ===

# of expected passes1282
# of unexpected failures6

Running target unix/-m64

=== libmudflap Summary for unix/-m64 ===

# of expected passes1288

=== libmudflap Summary ===

# of expected passes2570
# of unexpected failures6
=== libstdc++ tests ===


Running target unix
XPASS: 22_locale/locale/cons/12658_thread-1.cc execution test
XPASS: 26_numerics/cmath/c99_classification_macros_c.cc (test for excess errors)

=== libstdc++ Summary for unix ===

# of expected passes3713
# of unexpected successes   2
# of expected failures  12

Running target unix/-m64
XPASS: 22_locale/locale/cons/12658_thread-1.cc execution test
FAIL: 22_locale/messages/members/char/1.cc execution test
FAIL: 22_locale/messages/members/char/2.cc execution test
FAIL: 22_locale/messages/members/char/wrapped_locale.cc execution test
FAIL: 22_locale/messages_byname/named_equivalence.cc execution test
XPASS: 26_numerics/cmath/c99_classification_macros_c.cc (test for excess errors)
FAIL: 26_numerics/complex/13450.cc execution test
XPASS: 27_io/fpos/14320-1.cc execution test

=== libstdc++ Summary for unix/-m64 ===

# of expected passes3708
# of unexpected failures5
# of unexpected successes   3
# of expected failures  11

=== libstdc++ Summary ===

# of expected passes7421
# of unexpected failures5
# of unexpected successes   5
# of expected failures  23

Compiler version: 4.0.4 20060904 (prerelease) (Debian 4.0.3-7) 
Platform: i486-pc-linux-gnu
configure flags: -v 

Results for 4.0.4 20060904 (prerelease) (Debian 4.0.3-7) testsuite on ia64-unknown-linux-gnu

2006-09-07 Thread Matthias Klose
LAST_UPDATED: Mon Sep  4 00:30:28 UTC 2006 (revision 116676)

Native configuration is ia64-unknown-linux-gnu

=== g++ tests ===


Running target unix
XPASS: g++.old-deja/g++.other/init5.C execution test

=== g++ Summary ===

# of expected passes11082
# of unexpected successes   1
# of expected failures  69
# of unsupported tests  93
/build/buildd/gcc-4.0-4.0.3/build/gcc/testsuite/g++/../../g++  version 4.0.4 
20060904 (prerelease) (Debian 4.0.3-7)

=== gcc tests ===


Running target unix
FAIL: gcc.dg/builtin-apply4.c execution test
FAIL: gcc.dg/sibcall-7.c execution test
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 passes34623
# of unexpected failures2
# of unexpected successes   6
# of expected failures  125
# of untested testcases 28
# of unsupported tests  485
/build/buildd/gcc-4.0-4.0.3/build/gcc/xgcc  version 4.0.4 20060904 (prerelease) 
(Debian 4.0.3-7)

=== libffi tests ===


Running target unix

=== libffi Summary ===

# of expected passes219
# of unsupported tests  2
=== libmudflap tests ===


Running target unix

=== libmudflap Summary ===

# of expected passes1288
=== libstdc++ tests ===


Running target unix
XPASS: 22_locale/locale/cons/12658_thread-1.cc execution test
XPASS: 26_numerics/cmath/c99_classification_macros_c.cc (test for excess errors)
XPASS: 27_io/fpos/14320-1.cc execution test

=== libstdc++ Summary ===

# of expected passes3713
# of unexpected successes   3
# of expected failures  11

Compiler version: 4.0.4 20060904 (prerelease) (Debian 4.0.3-7) 
Platform: ia64-unknown-linux-gnu
configure flags: -v --prefix=/usr --enable-shared --with-system-zlib 
--libexecdir=/usr/lib --without-included-gettext --enable-threads=posix 
--enable-nls --program-suffix=-4.0 --enable-__cxa_atexit --enable-clocale=gnu 
--enable-libstdcxx-debug --enable-java-awt=gtk --enable-gtk-cairo 
--with-java-home=/usr/lib/jvm/java-1.4.2-gcj-4.0-1.4.2.0/jre 
--with-system-libunwind --enable-checking=release ia64-linux-gnu 
--enable-languages=c,c++,java
BOOT_CFLAGS=-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.17-2 The GNU assembler, linker and binary utilities


Patches that Debian applied in this version:

svn-updates:
  CVS updates from the 4.0 branch upto 20060904.

gcc-version:
  Add package identification to the gcc version string

gcc-textdomain:
  Set gettext's domain and textdomain to the versioned package name.

rename-info-files:
  Allow transformations on info file names. Reference the
  transformed info file names in the texinfo files.

libstdc++-pic:
  Build and install libstdc++_pic.a library.

libstdc++-doclink:
  adjust hrefs to point to the local documentation

amd64-specs:
  On x86-64 use 64bits mode assembly except with -m32.

gccbug:
  Use sensible-editor instead of vi as fallback editor

gccbug-posix:
  Make gccbug POSIX compliant (patch by David Weinehall)
  http://www.opengroup.org/onlinepubs/009695399/utilities/test.html

boehm-gc-nocheck:
  Disable running the boehm-gc testsuite. Hangs the buildd at least on hppa.

acats-expect:
  Run the ACATS testsuite using expect

fastjar-version:
  Append GCC version to the fastjar version string.

libstdc++-doxygen:
  libstdc++ doxygen docs: Set SHORT_NAMES to YES

arm-bigendian:

pr19877:
  Proposed patch to fix PR19877 (libgcj configury)

323016:
  Apply proposed patch for http://bugs.debian.org/323016

classpath-20050618:
  - update classpath awt, swing and xml parser for HTML support in swing.
  taken from classpath CVS HEAD 2005-06-18.
  - updates for gnu.xml and javax.swing.text.html.

classmap-path:
  Search classmap.db in /var/lib/gcj-4.0 (omitting the subminor version).

xml-update-20050930:
  classpath xml-update from 20050930

gcc-m68k-update:
  2005-07-24  Andreas Schwab  <[EMAIL PROTECTED]>
  
* config/m68k/m68k.md ("extendqidi2"): When source is an address
register use a word move.  Correct operand of ext.w in 68000 

Results for 4.0.4 20060904 (prerelease) (Debian 4.0.3-7) testsuite on powerpc-unknown-linux-gnu

2006-09-07 Thread Matthias Klose
LAST_UPDATED: Mon Sep  4 00:30:28 UTC 2006 (revision 116676)

Native configuration is powerpc-unknown-linux-gnu

=== g++ tests ===


Running target unix

=== g++ Summary for unix ===

# of expected passes11637
# of expected failures  69
# of unsupported tests  79

Running target unix/-m64

=== g++ Summary for unix/-m64 ===

# of expected passes11599
# of expected failures  69
# of unsupported tests  82

=== g++ Summary ===

# of expected passes23236
# of expected failures  138
# of unsupported tests  161
/home/doko/gcc/4.0/gcc-4.0-4.0.3/build/gcc/testsuite/g++/../../g++  version 
4.0.4 20060904 (prerelease) (Debian 4.0.3-7)

=== gcc tests ===


Running target unix
FAIL: gcc.dg/20020103-1.c scan-assembler-not LC
FAIL: gcc.dg/cleanup-10.c execution test
FAIL: gcc.dg/cleanup-11.c execution test
FAIL: gcc.dg/cleanup-8.c execution test
FAIL: gcc.dg/cleanup-9.c execution test
FAIL: gcc.dg/vect/pr20122.c scan-tree-dump-times vectorized 1 loops 2

=== gcc Summary for unix ===

# of expected passes36010
# of unexpected failures6
# of expected failures  94
# of untested testcases 28
# of unsupported tests  443

Running target unix/-m64
FAIL: gcc.c-torture/execute/20020720-1.c compilation,  -O1 
UNRESOLVED: gcc.c-torture/execute/20020720-1.c execution,  -O1 
FAIL: gcc.c-torture/execute/20020720-1.c compilation,  -O2 
UNRESOLVED: gcc.c-torture/execute/20020720-1.c execution,  -O2 
FAIL: gcc.c-torture/execute/20020720-1.c compilation,  -O3 -fomit-frame-pointer 
UNRESOLVED: gcc.c-torture/execute/20020720-1.c execution,  -O3 
-fomit-frame-pointer 
FAIL: gcc.c-torture/execute/20020720-1.c compilation,  -O3 -g 
UNRESOLVED: gcc.c-torture/execute/20020720-1.c execution,  -O3 -g 
FAIL: gcc.c-torture/execute/20020720-1.c compilation,  -Os 
UNRESOLVED: gcc.c-torture/execute/20020720-1.c execution,  -Os 
FAIL: gcc.dg/20020103-1.c scan-assembler-not LC
FAIL: gcc.dg/20020919-1.c  (test for errors, line 106)
FAIL: gcc.dg/20020919-1.c  (test for errors, line 124)
FAIL: gcc.dg/20020919-1.c  (test for errors, line 133)
FAIL: gcc.dg/20020919-1.c  (test for errors, line 160)
FAIL: gcc.dg/20020919-1.c  (test for errors, line 178)
FAIL: gcc.dg/20020919-1.c  (test for errors, line 232)
FAIL: gcc.dg/980827-1.c (test for excess errors)
UNRESOLVED: gcc.dg/980827-1.c compilation failed to produce executable
FAIL: gcc.dg/altivec-14.c  (test for warnings, line 7)
FAIL: gcc.dg/altivec-14.c  (test for warnings, line 8)
FAIL: gcc.dg/altivec-14.c  (test for warnings, line 9)
FAIL: gcc.dg/altivec-14.c  (test for warnings, line 10)
FAIL: gcc.dg/altivec-14.c  (test for warnings, line 11)
FAIL: gcc.dg/altivec-14.c  (test for warnings, line 12)
FAIL: gcc.dg/altivec-14.c  (test for warnings, line 14)
FAIL: gcc.dg/altivec-14.c  (test for warnings, line 15)
FAIL: gcc.dg/altivec-14.c  (test for warnings, line 16)
FAIL: gcc.dg/altivec-14.c  (test for warnings, line 20)
FAIL: gcc.dg/altivec-14.c  (test for warnings, line 21)
FAIL: gcc.dg/altivec-14.c  (test for warnings, line 22)
FAIL: gcc.dg/altivec-14.c (test for excess errors)
FAIL: gcc.dg/cleanup-8.c execution test
FAIL: gcc.dg/cleanup-9.c execution test
FAIL: gcc.dg/ppc-sdata-1.c (test for excess errors)
ERROR: gcc.dg/ppc-sdata-1.c: error executing dg-final: couldn't open 
"ppc-sdata-1.s": no such file or directory
UNRESOLVED: gcc.dg/ppc-sdata-1.c: error executing dg-final: couldn't open 
"ppc-sdata-1.s": no such file or directory
FAIL: gcc.dg/ppc-sdata-2.c (test for excess errors)
ERROR: gcc.dg/ppc-sdata-2.c: error executing dg-final: couldn't open 
"ppc-sdata-2.s": no such file or directory
UNRESOLVED: gcc.dg/ppc-sdata-2.c: error executing dg-final: couldn't open 
"ppc-sdata-2.s": no such file or directory
FAIL: gcc.dg/pr18096-1.c stack frame too large (test for warnings, line 11)
FAIL: gcc.dg/vect/pr20122.c scan-tree-dump-times vectorized 1 loops 2
FAIL: gcc.misc-tests/linkage.c link

=== gcc Summary for unix/-m64 ===

# of expected passes35959
# of unexpected failures33
# of expected failures  99
# of unresolved testcases   8
# of untested testcases 28
# of unsupported tests  447

=== gcc Summary ===

# of expected passes71969
# of unexpected failures39
# of expected failures  193
# of unresolved testcases   8
# of untested testcases 56
# of unsupported tests  890
/home/doko/gcc/4.0/gcc-4.0-4.0.3/build/gcc/xgcc  version 4.0.4 20060904 
(prerelease) (Debian 4.0.3-7)

=== libffi tests ===


Running target unix

=== libffi Summary for unix ===

# of expected passes219
# of unsupported tests  2

Running target unix/-m64

=== libffi Summary for unix/-m64 ===

# of expected passes219

Results for 4.0.4 20060904 (prerelease) (Debian 4.0.3-7) testsuite on s390-ibm-linux-gnu

2006-09-07 Thread Matthias Klose
LAST_UPDATED: Mon Sep  4 00:30:28 UTC 2006 (revision 116676)

Native configuration is s390-ibm-linux-gnu

=== g++ tests ===


Running target unix
XPASS: g++.old-deja/g++.other/init5.C execution test

=== g++ Summary ===

# of expected passes11539
# of unexpected successes   1
# of expected failures  69
# of unsupported tests  94
/build/buildd/gcc-4.0-4.0.3/build/gcc/testsuite/g++/../../g++  version 4.0.4 
20060904 (prerelease) (Debian 4.0.3-7)

=== gcc tests ===


Running target unix
FAIL: gcc.dg/fold-cond-1.c scan-tree-dump-times \\(g \\| h\\) != 0 1
XPASS: gcc.dg/tree-ssa/20040204-1.c scan-tree-dump-times link_error 0

=== gcc Summary ===

# of expected passes34812
# of unexpected failures1
# of unexpected successes   1
# of expected failures  68
# of untested testcases 28
# of unsupported tests  499
/build/buildd/gcc-4.0-4.0.3/build/gcc/xgcc  version 4.0.4 20060904 (prerelease) 
(Debian 4.0.3-7)

=== libffi tests ===


Running target unix

=== libffi Summary ===

# of expected passes219
# of unsupported tests  2
=== libmudflap tests ===


Running target unix
FAIL: libmudflap.cth/pass40-frag.c execution test
FAIL: libmudflap.cth/pass40-frag.c output pattern test
FAIL: libmudflap.cth/pass40-frag.c (-O2) execution test
FAIL: libmudflap.cth/pass40-frag.c (-O2) output pattern test
FAIL: libmudflap.cth/pass40-frag.c (-O3) execution test
FAIL: libmudflap.cth/pass40-frag.c (-O3) output pattern test

=== libmudflap Summary ===

# of expected passes1282
# of unexpected failures6
=== libstdc++ tests ===


Running target unix
XPASS: 22_locale/locale/cons/12658_thread-1.cc execution test
XPASS: 26_numerics/cmath/c99_classification_macros_c.cc (test for excess errors)

=== libstdc++ Summary ===

# of expected passes3713
# of unexpected successes   2
# of expected failures  12

Compiler version: 4.0.4 20060904 (prerelease) (Debian 4.0.3-7) 
Platform: s390-ibm-linux-gnu
configure flags: -v --prefix=/usr --enable-shared --with-system-zlib 
--libexecdir=/usr/lib --without-included-gettext --enable-threads=posix 
--enable-nls --program-suffix=-4.0 --enable-__cxa_atexit --enable-clocale=gnu 
--enable-libstdcxx-debug --enable-java-awt=gtk-default --enable-gtk-cairo 
--with-java-home=/usr/lib/jvm/java-1.4.2-gcj-4.0-1.4.2.0/jre 
--enable-checking=release s390-linux-gnu --enable-languages=c,c++,java
BOOT_CFLAGS=-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.17-2 The GNU assembler, linker and binary utilities


Patches that Debian applied in this version:

svn-updates:
  CVS updates from the 4.0 branch upto 20060904.

gcc-version:
  Add package identification to the gcc version string

gcc-textdomain:
  Set gettext's domain and textdomain to the versioned package name.

rename-info-files:
  Allow transformations on info file names. Reference the
  transformed info file names in the texinfo files.

libstdc++-pic:
  Build and install libstdc++_pic.a library.

libstdc++-doclink:
  adjust hrefs to point to the local documentation

amd64-specs:
  On x86-64 use 64bits mode assembly except with -m32.

gccbug:
  Use sensible-editor instead of vi as fallback editor

gccbug-posix:
  Make gccbug POSIX compliant (patch by David Weinehall)
  http://www.opengroup.org/onlinepubs/009695399/utilities/test.html

boehm-gc-nocheck:
  Disable running the boehm-gc testsuite. Hangs the buildd at least on hppa.

acats-expect:
  Run the ACATS testsuite using expect

fastjar-version:
  Append GCC version to the fastjar version string.

libstdc++-doxygen:
  libstdc++ doxygen docs: Set SHORT_NAMES to YES

arm-bigendian:

pr19877:
  Proposed patch to fix PR19877 (libgcj configury)

323016:
  Apply proposed patch for http://bugs.debian.org/323016

classpath-20050618:
  - update classpath awt, swing and xml parser for HTML support in swing.
  taken from classpath CVS HEAD 2005-06-18.
  - updates for gnu.xml and javax.swing.text.html.

classmap-path:
  Search classmap.db in /var/lib/gcj-4.0 (omitting the subminor version).

xml-update-20050930:
  classpath xml-update from 20050930

gcc-m68k-update:
  2005-07-24  Andreas Schwab  <[EMAIL PROTECTED]>
  
* config/m68k/m68k.md ("extendqidi2"): When source is an address
register use a word move.  Correct operand of ext.w in 68000 code.

libjava-awt-name:
  2005-05-12  Thomas Fitzsimmons  <[EMAIL PROTECTED]>
  
* Makefile.am (cond_gtk_gcjawt_ltlibrary): Rename libjawt.l

Results for 4.0.4 20060904 (prerelease) (Debian 4.0.3-7) testsuite on sparc-unknown-linux-gnu

2006-09-07 Thread Matthias Klose
LAST_UPDATED: Mon Sep  4 00:30:28 UTC 2006 (revision 116676)

Native configuration is sparc-unknown-linux-gnu

=== g++ tests ===


Running target unix
XPASS: g++.old-deja/g++.other/init5.C execution test

=== g++ Summary for unix ===

# of expected passes11544
# of unexpected successes   1
# of expected failures  69
# of unsupported tests  92

Running target unix/-m64
FAIL: g++.dg/tls/static-1.C execution test
XPASS: g++.old-deja/g++.other/init5.C execution test

=== g++ Summary for unix/-m64 ===

# of expected passes11511
# of unexpected failures1
# of unexpected successes   1
# of expected failures  69
# of unsupported tests  94

=== g++ Summary ===

# of expected passes23055
# of unexpected failures1
# of unexpected successes   2
# of expected failures  138
# of unsupported tests  186
/build/buildd/gcc-4.0-4.0.3/build/gcc/testsuite/g++/../../g++  version 4.0.4 
20060904 (prerelease) (Debian 4.0.3-7)

=== gcc tests ===


Running target unix
UNRESOLVED: gcc.dg/tls/opt-11.c compilation failed to produce executable

=== gcc Summary for unix ===

# of expected passes35122
# of expected failures  95
# of unresolved testcases   1
# of untested testcases 28
# of unsupported tests  528

Running target unix/-m64
UNRESOLVED: gcc.dg/tls/opt-11.c compilation failed to produce executable
FAIL: gcc.dg/tls/pr24428-2.c execution test
FAIL: gcc.dg/tls/pr24428.c execution test
FAIL: gcc.misc-tests/linkage.c link

=== gcc Summary for unix/-m64 ===

# of expected passes35114
# of unexpected failures3
# of expected failures  95
# of unresolved testcases   1
# of untested testcases 28
# of unsupported tests  530

=== gcc Summary ===

# of expected passes70236
# of unexpected failures3
# of expected failures  190
# of unresolved testcases   2
# of untested testcases 56
# of unsupported tests  1058
/build/buildd/gcc-4.0-4.0.3/build/gcc/xgcc  version 4.0.4 20060904 (prerelease) 
(Debian 4.0.3-7)

=== libffi tests ===


Running target unix

=== libffi Summary for unix ===

# of expected passes219
# of unsupported tests  2

Running target unix/-m64

=== libffi Summary for unix/-m64 ===

# of expected passes219
# of unsupported tests  2

=== libffi Summary ===

# of expected passes438
# of unsupported tests  4
=== libmudflap tests ===


Running target unix
FAIL: libmudflap.c/pass54-frag.c execution test
FAIL: libmudflap.c/pass54-frag.c (-static) execution test

=== libmudflap Summary for unix ===

# of expected passes1286
# of unexpected failures2

Running target unix/-m64
FAIL: libmudflap.c/pass54-frag.c execution test
FAIL: libmudflap.c/pass54-frag.c (-static) execution test

=== libmudflap Summary for unix/-m64 ===

# of expected passes1286
# of unexpected failures2

=== libmudflap Summary ===

# of expected passes2572
# of unexpected failures4
=== libstdc++ tests ===


Running target unix
XPASS: 22_locale/locale/cons/12658_thread-1.cc execution test
XPASS: 26_numerics/cmath/c99_classification_macros_c.cc (test for excess errors)

=== libstdc++ Summary for unix ===

# of expected passes3713
# of unexpected successes   2
# of expected failures  12

Running target unix/-m64
XPASS: 22_locale/locale/cons/12658_thread-1.cc execution test
FAIL: 22_locale/messages/members/char/1.cc execution test
FAIL: 22_locale/messages/members/char/2.cc execution test
FAIL: 22_locale/messages/members/char/wrapped_env.cc execution test
FAIL: 22_locale/messages/members/char/wrapped_locale.cc execution test
FAIL: 22_locale/messages_byname/named_equivalence.cc execution test
XPASS: 26_numerics/cmath/c99_classification_macros_c.cc (test for excess errors)
FAIL: 27_io/basic_filebuf/close/char/4879.cc execution test
FAIL: 27_io/basic_filebuf/close/char/9964.cc execution test
FAIL: 27_io/basic_filebuf/imbue/char/13171-2.cc execution test
FAIL: 27_io/basic_filebuf/imbue/wchar_t/14975-2.cc execution test
FAIL: 27_io/basic_filebuf/underflow/char/10097.cc execution test
XPASS: 27_io/fpos/14320-1.cc execution test
FAIL: 27_io/objects/char/7.cc execution test
FAIL: 27_io/objects/char/9661-1.cc execution test
FAIL: 27_io/objects/wchar_t/7.cc execution test
FAIL: 27_io/objects/wchar_t/9661-1.cc execution test
FAIL: ext/array_allocator/2.cc execution test

=== libstdc++ Summary for unix/-m64 ===

# of expected passes3698
# of unexpected failures15
# of unexpected s

Results for 4.1.2 20060901 (prerelease) (Debian 4.1.1-13) testsuite on m68k-unknown-linux-gnu

2006-09-07 Thread Matthias Klose
LAST_UPDATED: Fri Sep  1 06:19:56 UTC 2006 (revision 116619)

Native configuration is m68k-unknown-linux-gnu

=== g++ tests ===


Running target unix
FAIL: g++.dg/eh/omit-frame-pointer2.C execution test
FAIL: g++.dg/ext/visibility/noPLT.C scan-assembler-not [EMAIL PROTECTED]
FAIL: g++.dg/lookup/linkage1.C  (test for errors, line 3)
FAIL: g++.dg/lookup/linkage1.C  (test for errors, line 4)
FAIL: g++.dg/lookup/linkage2.C (test for excess errors)
FAIL: g++.dg/opt/eh2.C execution test
XPASS: g++.dg/tree-ssa/pr14814.C scan-tree-dump-times &this 0
XPASS: g++.old-deja/g++.other/init5.C execution test

=== g++ Summary ===

# of expected passes12193
# of unexpected failures6
# of unexpected successes   2
# of expected failures  66
# of unsupported tests  117
/build/buildd/gcc-4.1-4.1.1ds1/build/gcc/testsuite/g++/../../g++  version 4.1.2 
20060901 (prerelease) (Debian 4.1.1-13)

=== gcc tests ===


Running target unix
WARNING: program timed out.
FAIL: gcc.c-torture/compile/20001226-1.c  -O1  (test for excess errors)
WARNING: program timed out.
FAIL: gcc.c-torture/compile/20001226-1.c  -O2  (test for excess errors)
WARNING: program timed out.
FAIL: gcc.c-torture/compile/20001226-1.c  -O3 -fomit-frame-pointer  (test for 
excess errors)
WARNING: program timed out.
FAIL: gcc.c-torture/compile/20001226-1.c  -O3 -g  (test for excess errors)
WARNING: program timed out.
FAIL: gcc.c-torture/compile/20001226-1.c  -Os  (test for excess errors)
FAIL: gcc.c-torture/execute/20020418-1.c execution,  -O1 
FAIL: gcc.c-torture/execute/20020418-1.c execution,  -O2 
FAIL: gcc.c-torture/execute/20020418-1.c execution,  -Os 
FAIL: gcc.c-torture/execute/loop-2f.c execution,  -O0 
FAIL: gcc.c-torture/execute/loop-2f.c execution,  -O1 
FAIL: gcc.c-torture/execute/loop-2f.c execution,  -O2 
FAIL: gcc.c-torture/execute/loop-2f.c execution,  -O3 -fomit-frame-pointer 
FAIL: gcc.c-torture/execute/loop-2f.c execution,  -O3 -fomit-frame-pointer 
-funroll-loops 
FAIL: gcc.c-torture/execute/loop-2f.c execution,  -O3 -fomit-frame-pointer 
-funroll-all-loops -finline-functions 
FAIL: gcc.c-torture/execute/loop-2f.c execution,  -O3 -g 
FAIL: gcc.c-torture/execute/loop-2f.c execution,  -Os 
FAIL: gcc.c-torture/execute/loop-2g.c execution,  -O0 
FAIL: gcc.c-torture/execute/loop-2g.c execution,  -O1 
FAIL: gcc.c-torture/execute/loop-2g.c execution,  -O2 
FAIL: gcc.c-torture/execute/loop-2g.c execution,  -O3 -fomit-frame-pointer 
FAIL: gcc.c-torture/execute/loop-2g.c execution,  -O3 -fomit-frame-pointer 
-funroll-loops 
FAIL: gcc.c-torture/execute/loop-2g.c execution,  -O3 -fomit-frame-pointer 
-funroll-all-loops -finline-functions 
FAIL: gcc.c-torture/execute/loop-2g.c execution,  -O3 -g 
FAIL: gcc.c-torture/execute/loop-2g.c execution,  -Os 
FAIL: gcc.c-torture/execute/pr17377.c execution,  -O3 -fomit-frame-pointer 
FAIL: gcc.c-torture/execute/ieee/copysign1.c execution,  -O0 
FAIL: gcc.c-torture/execute/ieee/copysign1.c execution,  -O1 
FAIL: gcc.c-torture/execute/ieee/copysign1.c execution,  -O2 
FAIL: gcc.c-torture/execute/ieee/copysign1.c execution,  -O3 
-fomit-frame-pointer 
FAIL: gcc.c-torture/execute/ieee/copysign1.c execution,  -O3 
-fomit-frame-pointer -funroll-loops 
FAIL: gcc.c-torture/execute/ieee/copysign1.c execution,  -O3 
-fomit-frame-pointer -funroll-all-loops -finline-functions 
FAIL: gcc.c-torture/execute/ieee/copysign1.c execution,  -O3 -g 
FAIL: gcc.c-torture/execute/ieee/copysign1.c execution,  -Os 
FAIL: gcc.c-torture/execute/ieee/copysign2.c execution,  -O0 
FAIL: gcc.c-torture/execute/ieee/copysign2.c execution,  -O1 
FAIL: gcc.c-torture/execute/ieee/copysign2.c execution,  -O2 
FAIL: gcc.c-torture/execute/ieee/copysign2.c execution,  -O3 
-fomit-frame-pointer 
FAIL: gcc.c-torture/execute/ieee/copysign2.c execution,  -O3 
-fomit-frame-pointer -funroll-loops 
FAIL: gcc.c-torture/execute/ieee/copysign2.c execution,  -O3 
-fomit-frame-pointer -funroll-all-loops -finline-functions 
FAIL: gcc.c-torture/execute/ieee/copysign2.c execution,  -O3 -g 
FAIL: gcc.c-torture/execute/ieee/copysign2.c execution,  -Os 
FAIL: gcc.c-torture/execute/ieee/mul-subnormal-single-1.c execution,  -O0 
FAIL: gcc.c-torture/execute/ieee/mul-subnormal-single-1.c execution,  -O1 
FAIL: gcc.c-torture/execute/ieee/mul-subnormal-single-1.c execution,  -O2 
FAIL: gcc.c-torture/execute/ieee/mul-subnormal-single-1.c execution,  -O3 
-fomit-frame-pointer 
FAIL: gcc.c-torture/execute/ieee/mul-subnormal-single-1.c execution,  -O3 
-fomit-frame-pointer -funroll-loops 
FAIL: gcc.c-torture/execute/ieee/mul-subnormal-single-1.c execution,  -O3 
-fomit-frame-pointer -funroll-all-loops -finline-functions 
FAIL: gcc.c-torture/execute/ieee/mul-subnormal-single-1.c execution,  -O3 -g 
FAIL: gcc.c-torture/execute/ieee/mul-subnormal-single-1.c execution,  -Os 
FAIL: gcc.dg/cleanup-10.c execution test
FAIL: gcc.dg/cleanup-11.c execution test
FAIL: gcc.dg/cleanup-8.c execution test
FAIL: gcc.dg

Results for 4.1.2 20060901 (prerelease) (Debian 4.1.1-13) testsuite on sparc-unknown-linux-gnu

2006-09-07 Thread Matthias Klose
LAST_UPDATED: Fri Sep  1 06:19:56 UTC 2006 (revision 116619)

Native configuration is sparc-unknown-linux-gnu

=== g++ tests ===


Running target unix
FAIL: g++.dg/lookup/linkage1.C  (test for errors, line 3)
FAIL: g++.dg/lookup/linkage1.C  (test for errors, line 4)
FAIL: g++.dg/lookup/linkage2.C (test for excess errors)
XPASS: g++.dg/tree-ssa/pr14814.C scan-tree-dump-times &this 0
XPASS: g++.old-deja/g++.other/init5.C execution test

=== g++ Summary for unix ===

# of expected passes12242
# of unexpected failures3
# of unexpected successes   2
# of expected failures  66
# of unsupported tests  105

Running target unix/-m64
FAIL: tmpdir-g++.dg-struct-layout-1/t026 cp_compat_x_tst.o compile
FAIL: tmpdir-g++.dg-struct-layout-1/t026 cp_compat_y_tst.o compile
UNRESOLVED: tmpdir-g++.dg-struct-layout-1/t026 
cp_compat_x_tst.o-cp_compat_y_tst.o link 
UNRESOLVED: tmpdir-g++.dg-struct-layout-1/t026 
cp_compat_x_tst.o-cp_compat_y_tst.o execute 
FAIL: g++.dg/lookup/linkage1.C  (test for errors, line 3)
FAIL: g++.dg/lookup/linkage1.C  (test for errors, line 4)
FAIL: g++.dg/lookup/linkage2.C (test for excess errors)
XPASS: g++.dg/tree-ssa/pr14814.C scan-tree-dump-times &this 0
FAIL: g++.dg/tls/static-1.C execution test
XPASS: g++.old-deja/g++.other/init5.C execution test

=== g++ Summary for unix/-m64 ===

# of expected passes12205
# of unexpected failures6
# of unexpected successes   2
# of expected failures  66
# of unresolved testcases   2
# of unsupported tests  107

=== g++ Summary ===

# of expected passes24447
# of unexpected failures9
# of unexpected successes   4
# of expected failures  132
# of unresolved testcases   2
# of unsupported tests  212
/build/buildd/gcc-4.1-4.1.1ds1/build/gcc/testsuite/g++/../../g++  version 4.1.2 
20060901 (prerelease) (Debian 4.1.1-13)

=== gcc tests ===


Running target unix
XPASS: gcc.dg/vect/pr20122.c scan-tree-dump-times vectorized 1 loops 2
XPASS: gcc.dg/vect/vect-105.c scan-tree-dump-times vectorized 1 loops 1
XPASS: gcc.dg/vect/vect-75.c scan-tree-dump-times vectorized 1 loops 1

=== gcc Summary for unix ===

# of expected passes37896
# of unexpected successes   3
# of expected failures  108
# of untested testcases 28
# of unsupported tests  358

Running target unix/-m64
FAIL: gcc.dg/tls/opt-11.c execution test
FAIL: gcc.dg/tls/pr24428-2.c execution test
FAIL: gcc.dg/tls/pr24428.c execution test
FAIL: gcc.dg/tree-ssa/gen-vect-11c.c scan-tree-dump-times vectorized 0 loops 1
XPASS: gcc.dg/vect/pr20122.c scan-tree-dump-times vectorized 1 loops 2
XPASS: gcc.dg/vect/vect-105.c scan-tree-dump-times vectorized 1 loops 1
XPASS: gcc.dg/vect/vect-75.c scan-tree-dump-times vectorized 1 loops 1
FAIL: gcc.misc-tests/linkage.c link

=== gcc Summary for unix/-m64 ===

# of expected passes37886
# of unexpected failures5
# of unexpected successes   3
# of expected failures  108
# of untested testcases 28
# of unsupported tests  360

=== gcc Summary ===

# of expected passes75782
# of unexpected failures5
# of unexpected successes   6
# of expected failures  216
# of untested testcases 56
# of unsupported tests  718
/build/buildd/gcc-4.1-4.1.1ds1/build/gcc/xgcc  version 4.1.2 20060901 
(prerelease) (Debian 4.1.1-13)

=== gfortran tests ===


Running target unix

=== gfortran Summary for unix ===

# of expected passes13059
# of expected failures  14
# of unsupported tests  95

Running target unix/-m64
XPASS: gfortran.dg/vect/vect-5.f90  -O  scan-tree-dump-times vectorized 2 loops 
1

=== gfortran Summary for unix/-m64 ===

# of expected passes13201
# of unexpected successes   1
# of expected failures  14
# of unsupported tests  23

=== gfortran Summary ===

# of expected passes26260
# of unexpected successes   1
# of expected failures  28
# of unsupported tests  118
/build/buildd/gcc-4.1-4.1.1ds1/build/gcc/testsuite/gfortran/../../gfortran  
version 4.1.2 20060901 (prerelease) (Debian 4.1.1-13)

=== obj-c++ tests ===


Running target unix
FAIL: obj-c++.dg/cxx-ivars-2.mm execution test
FAIL: obj-c++.dg/encode-8.mm execution test
FAIL: obj-c++.dg/isa-field-1.mm (test for excess errors)
FAIL: obj-c++.dg/lookup-2.mm (test for excess errors)
UNRESOLVED: obj-c++.dg/lookup-2.mm compilation failed to produce executable
FAIL: obj-c++.dg/try-catch-2.mm (test for excess errors)
UNRESOLVED: obj-c++.dg/try-catch-2.mm compilation failed to produce executable
FAIL: obj-c++.dg/try-catch-9.mm (test for excess errors)
UNRESOLVED: obj-c++.dg/try-catch-9.mm