Results for 4.7.0 20120212 (experimental) (GCC) testsuite on x86_64-apple-darwin11.3.0

Jack Howarth howarth@bromo.med.uc.edu
Mon Feb 13 03:07:00 GMT 2012


r184143 with http://gcc.gnu.org/ml/gcc-patches/2012-02/msg00566.html
and

Index: libitm/alloc_cpp.cc
===================================================================
--- libitm/alloc_cpp.cc (revision 183968)
+++ libitm/alloc_cpp.cc (working copy)
@@ -60,7 +60,7 @@ extern void _ZdlPvRKSt9nothrow_t (void *, c_nothro
 extern void *_ZnaXRKSt9nothrow_t (size_t, c_nothrow_p) __attribute__((weak));
 extern void _ZdaPvRKSt9nothrow_t (void *, c_nothrow_p) __attribute__((weak));
 
-#if !defined (HAVE_ELF_STYLE_WEAKREF)
+#if !defined (HAVE_ELF_STYLE_WEAKREF) && !defined (__MACH__)
 void *_ZnwX (size_t) { return NULL; }
 void _ZdlPv (void *) { return; }
 void *_ZnaX (size_t) { return NULL; }
Index: libitm/eh_cpp.cc
===================================================================
--- libitm/eh_cpp.cc    (revision 183968)
+++ libitm/eh_cpp.cc    (working copy)
@@ -39,7 +39,7 @@ extern void *__cxa_begin_catch (void *) WEAK;
 extern void *__cxa_end_catch (void) WEAK;
 extern void __cxa_tm_cleanup (void *, void *, unsigned int) WEAK;
 
-#if !defined (HAVE_ELF_STYLE_WEAKREF)
+#if !defined (HAVE_ELF_STYLE_WEAKREF) && !defined (__MACH__)
 void *__cxa_allocate_exception (size_t) { return NULL; }
 void __cxa_throw (void *, void *, void *) { return; }
 void *__cxa_begin_catch (void *) { return NULL; }
Index: libgcc/config/darwin-crt-tm.c
===================================================================
--- libgcc/config/darwin-crt-tm.c       (revision 183968)
+++ libgcc/config/darwin-crt-tm.c       (working copy)
@@ -23,33 +23,68 @@ a copy of the GCC Runtime Library Exception along
 see the files COPYING3 and COPYING.RUNTIME respectively.  If not, see
 <http://www.gnu.org/licenses/>.  */
 
+#include "tsystem.h"
+#include <stddef.h>
+#include <dlfcn.h>
 #include <mach-o/dyld.h>
+#include <mach-o/getsect.h>
 
-/* not listed in mach-o/dyld.h for some reason.  */
-extern char * getsectdata (const char*,const char*,unsigned long*); 
+#ifdef __LP64__
+#define GET_DATA_TMCT(mh,size) \
+  getsectdatafromheader_64 ((struct mach_header_64*) mh, \
+                           "__DATA", "__tm_clone_table", (uint64_t *)size)
+#else
+#define GET_DATA_TMCT(mh,size) \
+  getsectdatafromheader (mh, "__DATA", "__tm_clone_table", (uint32_t *)size)
+#endif
 
 #define WEAK __attribute__((weak))
+#define UNUSED __attribute__((unused))
 
 extern void _ITM_registerTMCloneTable (void *, size_t) WEAK;
 extern void _ITM_deregisterTMCloneTable (void *) WEAK;
 
+#if defined(START) || defined(END)
+static inline void *getTMCloneTable (const void *f, size_t *tmct_siz)
+{
+  char *tmct_fixed, *tmct = NULL;
+  unsigned int i, img_count; 
+  struct mach_header *mh;
+  Dl_info info;
+  
+  if (! dladdr (f, &info) || info.dli_fbase == NULL)
+    abort ();
+  
+  mh = (struct mach_header *) info.dli_fbase;
+  tmct_fixed = GET_DATA_TMCT (mh, tmct_siz);
+  *tmct_siz /= (sizeof (size_t) * 2);
+  /* No tm_clone_table or no clones. */
+  if (tmct_fixed == NULL || *tmct_siz == 0)
+    return NULL; 
+
+  img_count = _dyld_image_count();
+  for (i = 0; i < img_count && tmct == NULL; i++)
+    {
+      if (mh == _dyld_get_image_header(i))
+       tmct = tmct_fixed + (unsigned long)_dyld_get_image_vmaddr_slide(i); 
+    }
+
+  return tmct;
+}
+#endif
+
 #ifdef START
 
 void __doTMRegistrations (void) __attribute__ ((constructor));
 
 void __doTMRegistrations (void)
 {
-  char * tm_clone_table_sect_data;
-  unsigned long tmct_siz;
-  
-  tm_clone_table_sect_data = getsectdata ("__DATA",
-                                         "__tm_clone_table",
-                                         &tmct_siz);
-  tmct_siz /= (sizeof (size_t) * 2);
-  if (_ITM_registerTMCloneTable != NULL
-      && tm_clone_table_sect_data != NULL
-      && tmct_siz > 0)
-    _ITM_registerTMCloneTable (tm_clone_table_sect_data, (size_t)tmct_siz);
+  size_t tmct_siz;
+  void *tmct;
+
+  tmct = getTMCloneTable ((const void *)&__doTMRegistrations, &tmct_siz);
+  if (_ITM_registerTMCloneTable != NULL && tmct != NULL)
+    _ITM_registerTMCloneTable (tmct, (size_t)tmct_siz);
 }
 
 #endif
@@ -60,18 +95,53 @@ void __doTMdeRegistrations (void) __attribute__ ((
 
 void __doTMdeRegistrations (void)
 {
-  char * tm_clone_table_sect_data;
-  unsigned long tmct_siz;
-  
-  tm_clone_table_sect_data = getsectdata ("__DATA",
-                                         "__tm_clone_table",
-                                         &tmct_siz);
-  
-  if (_ITM_deregisterTMCloneTable != NULL
-      && tm_clone_table_sect_data != NULL
-      && tmct_siz > 0)
-    _ITM_deregisterTMCloneTable (tm_clone_table_sect_data);
+  size_t tmct_siz;
+  void *tmct;
 
+  tmct = getTMCloneTable ((const void *)&__doTMdeRegistrations, &tmct_siz);
+  if (_ITM_deregisterTMCloneTable != NULL && tmct != NULL)
+    _ITM_deregisterTMCloneTable (tmct);
 }
 
+/* Provide dummy functions to satisfy linkage for versions of the Darwin tool-chain that
+   that can't handle undefined weak refs at the link stage.  */
+
+extern void *__cxa_allocate_exception (size_t) WEAK;
+extern void __cxa_throw (void *, void *, void *) WEAK;
+extern void *__cxa_begin_catch (void *) WEAK;
+extern void *__cxa_end_catch (void) WEAK;
+extern void __cxa_tm_cleanup (void *, void *, unsigned int) WEAK;
+
+void *__cxa_allocate_exception (size_t s UNUSED) { return NULL; }
+void __cxa_throw (void * a UNUSED, void * b UNUSED, void * c UNUSED)
+{ return; }
+void *__cxa_begin_catch (void * a UNUSED) { return NULL; }
+void *__cxa_end_catch (void) { return NULL; }
+void __cxa_tm_cleanup (void * a UNUSED, void * b UNUSED,  unsigned int c UNUSED)
+{ return; }
+
+extern void *_ZnwX (size_t) WEAK;
+extern void _ZdlPv (void *) WEAK;
+extern void *_ZnaX (size_t) WEAK;
+extern void _ZdaPv (void *) WEAK;
+
+typedef const struct nothrow_t { } *c_nothrow_p;
+
+extern void *_ZnwXRKSt9nothrow_t (size_t, c_nothrow_p) WEAK;
+extern void _ZdlPvRKSt9nothrow_t (void *, c_nothrow_p) WEAK;
+extern void *_ZnaXRKSt9nothrow_t (size_t, c_nothrow_p) WEAK;
+extern void _ZdaPvRKSt9nothrow_t (void *, c_nothrow_p) WEAK;
+
+void *_ZnwX (size_t s UNUSED) { return NULL; }
+void _ZdlPv (void * a UNUSED) { return; }
+void *_ZnaX (size_t s UNUSED) { return NULL; }
+void _ZdaPv (void * a UNUSED) { return; }
+
+void *_ZnwXRKSt9nothrow_t (size_t s UNUSED, c_nothrow_p b UNUSED)
+  { return NULL; }
+void _ZdlPvRKSt9nothrow_t (void * a UNUSED, c_nothrow_p b UNUSED)  { return; }
+void *_ZnaXRKSt9nothrow_t (size_t s UNUSED, c_nothrow_p b UNUSED)
+ { return NULL; }
+void _ZdaPvRKSt9nothrow_t (void * a UNUSED, c_nothrow_p b UNUSED) { return; }
+
 #endif

Native configuration is x86_64-apple-darwin11.3.0

		=== g++ tests ===


Running target unix/-m32
WARNING: g++.dg/ext/label13.C -std=gnu++98 compilation failed to produce executable
WARNING: g++.dg/ext/label13.C -std=gnu++11 compilation failed to produce executable
FAIL: g++.dg/tree-ssa/pr44706.C -std=gnu++98 scan-tree-dump-not fnsplit "Splitting function"
FAIL: g++.dg/tree-ssa/pr44706.C -std=gnu++11 scan-tree-dump-not fnsplit "Splitting function"

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

# of expected passes		47004
# of unexpected failures	2
# of expected failures		288
# of unsupported tests		371

Running target unix/-m64
WARNING: g++.dg/ext/label13.C -std=gnu++98 compilation failed to produce executable
WARNING: g++.dg/ext/label13.C -std=gnu++11 compilation failed to produce executable
FAIL: g++.dg/tree-ssa/pr44706.C -std=gnu++98 scan-tree-dump-not fnsplit "Splitting function"
FAIL: g++.dg/tree-ssa/pr44706.C -std=gnu++11 scan-tree-dump-not fnsplit "Splitting function"

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

# of expected passes		47801
# of unexpected failures	2
# of expected failures		288
# of unsupported tests		597

		=== g++ Summary ===

# of expected passes		94805
# of unexpected failures	4
# of expected failures		576
# of unsupported tests		968
/sw/src/fink.build/gcc47-4.7.0-1/darwin_objdir/gcc/testsuite/g++/../../g++  version 4.7.0 20120212 (experimental) (GCC) 

		=== gcc tests ===


Running target unix/-m32
FAIL: gcc.dg/matrix/transpose-3.c execution,    -fprofile-use -fipa-matrix-reorg -fdump-ipa-matrix-reorg -O3 -fwhole-program -fno-tree-fre
FAIL: gcc.dg/tree-prof/pr44777.c execution,    -fprofile-generate -D_PROFILE_GENERATE
UNRESOLVED: gcc.dg/tree-prof/pr44777.c compilation,  -fprofile-use -D_PROFILE_USE
UNRESOLVED: gcc.dg/tree-prof/pr44777.c execution,    -fprofile-use -D_PROFILE_USE
FAIL: gcc.dg/tree-prof/pr52027.c compilation,  -fprofile-use -D_PROFILE_USE
UNRESOLVED: gcc.dg/tree-prof/pr52027.c execution,    -fprofile-use -D_PROFILE_USE
FAIL: gcc.misc-tests/gcov-14.c execution test
FAIL: gcc.misc-tests/gcov-14.c gcov failed: gcov-14.c.gcov does not exist

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

# of expected passes		81824
# of unexpected failures	5
# of expected failures		258
# of unresolved testcases	3
# of unsupported tests		1930

Running target unix/-m64
FAIL: gcc.dg/matrix/transpose-3.c execution,    -fprofile-use -fipa-matrix-reorg -fdump-ipa-matrix-reorg -O3 -fwhole-program -fno-tree-fre
FAIL: gcc.dg/tree-prof/pr34999.c compilation,  -fprofile-use -D_PROFILE_USE
UNRESOLVED: gcc.dg/tree-prof/pr34999.c execution,    -fprofile-use -D_PROFILE_USE
FAIL: gcc.dg/tree-prof/pr52027.c compilation,  -fprofile-use -D_PROFILE_USE
UNRESOLVED: gcc.dg/tree-prof/pr52027.c execution,    -fprofile-use -D_PROFILE_USE
FAIL: gcc.misc-tests/gcov-14.c execution test
FAIL: gcc.misc-tests/gcov-14.c gcov failed: gcov-14.c.gcov does not exist
FAIL: gcc.target/i386/pr49866.c (test for excess errors)

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

# of expected passes		82059
# of unexpected failures	6
# of expected failures		259
# of unresolved testcases	2
# of unsupported tests		2262

		=== gcc Summary ===

# of expected passes		163883
# of unexpected failures	11
# of expected failures		517
# of unresolved testcases	5
# of unsupported tests		4192
/sw/src/fink.build/gcc47-4.7.0-1/darwin_objdir/gcc/xgcc  version 4.7.0 20120212 (experimental) (GCC) 

		=== gfortran tests ===


Running target unix/-m32

		=== gfortran Summary for unix/-m32 ===

# of expected passes		40612
# of expected failures		56
# of unsupported tests		209

Running target unix/-m64

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

# of expected passes		40899
# of expected failures		56
# of unsupported tests		71

		=== gfortran Summary ===

# of expected passes		81511
# of expected failures		112
# of unsupported tests		280
/sw/src/fink.build/gcc47-4.7.0-1/darwin_objdir/gcc/testsuite/gfortran/../../gfortran  version 4.7.0 20120212 (experimental) (GCC) 

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


Running target unix/-m32
FAIL: obj-c++.dg/cxx-ivars-3.mm -fnext-runtime execution test
FAIL: obj-c++.dg/lto/trivial-1 obj_cpp_lto_trivial-1_0.o-obj_cpp_lto_trivial-1_0.o link, -O0 -flto -fnext-runtime
UNRESOLVED: obj-c++.dg/lto/trivial-1 obj_cpp_lto_trivial-1_0.o-obj_cpp_lto_trivial-1_0.o execute -O0 -flto -fnext-runtime
FAIL: obj-c++.dg/lto/trivial-1 obj_cpp_lto_trivial-1_0.o-obj_cpp_lto_trivial-1_0.o link, -O2 -flto -fnext-runtime
UNRESOLVED: obj-c++.dg/lto/trivial-1 obj_cpp_lto_trivial-1_0.o-obj_cpp_lto_trivial-1_0.o execute -O2 -flto -fnext-runtime
FAIL: obj-c++.dg/lto/trivial-1 obj_cpp_lto_trivial-1_0.o-obj_cpp_lto_trivial-1_0.o link, -O0 -flto -flto-partition=none -fnext-runtime
UNRESOLVED: obj-c++.dg/lto/trivial-1 obj_cpp_lto_trivial-1_0.o-obj_cpp_lto_trivial-1_0.o execute -O0 -flto -flto-partition=none -fnext-runtime
FAIL: obj-c++.dg/lto/trivial-1 obj_cpp_lto_trivial-1_0.o-obj_cpp_lto_trivial-1_0.o link, -O2 -flto -flto-partition=none -fnext-runtime
UNRESOLVED: obj-c++.dg/lto/trivial-1 obj_cpp_lto_trivial-1_0.o-obj_cpp_lto_trivial-1_0.o execute -O2 -flto -flto-partition=none -fnext-runtime
FAIL: obj-c++.dg/torture/trivial.mm  -O2 -flto -flto-partition=none  -fnext-runtime (test for excess errors)
WARNING: obj-c++.dg/torture/trivial.mm  -O2 -flto -flto-partition=none  -fnext-runtime compilation failed to produce executable
FAIL: obj-c++.dg/torture/trivial.mm  -O2 -flto  -fnext-runtime (test for excess errors)
WARNING: obj-c++.dg/torture/trivial.mm  -O2 -flto  -fnext-runtime compilation failed to produce executable
FAIL: obj-c++.dg/torture/strings/string1.mm  -O2 -flto -flto-partition=none  -fnext-runtime (test for excess errors)
FAIL: obj-c++.dg/torture/strings/string1.mm  -O2 -flto  -fnext-runtime (test for excess errors)
FAIL: obj-c++.dg/torture/tls/thr-init-3.mm  -O2 -flto -flto-partition=none  -fnext-runtime (test for excess errors)
WARNING: obj-c++.dg/torture/tls/thr-init-3.mm  -O2 -flto -flto-partition=none  -fnext-runtime compilation failed to produce executable
FAIL: obj-c++.dg/torture/tls/thr-init-3.mm  -O2 -flto  -fnext-runtime (test for excess errors)
WARNING: obj-c++.dg/torture/tls/thr-init-3.mm  -O2 -flto  -fnext-runtime compilation failed to produce executable

		=== obj-c++ Summary for unix/-m32 ===

# of expected passes		3140
# of unexpected failures	11
# of expected failures		2
# of unresolved testcases	4
# of unsupported tests		68

Running target unix/-m64
FAIL: obj-c++.dg/torture/strings/string1.mm  -O2 -flto -flto-partition=none  -fnext-runtime (test for excess errors)
FAIL: obj-c++.dg/torture/strings/string1.mm  -O2 -flto  -fnext-runtime (test for excess errors)

		=== obj-c++ Summary for unix/-m64 ===

# of expected passes		3107
# of unexpected failures	2
# of expected failures		19
# of unsupported tests		73

		=== obj-c++ Summary ===

# of expected passes		6247
# of unexpected failures	13
# of expected failures		21
# of unresolved testcases	4
# of unsupported tests		141
/sw/src/fink.build/gcc47-4.7.0-1/darwin_objdir/gcc/testsuite/obj-c++/../../g++  version 4.7.0 20120212 (experimental) (GCC) 

		=== objc tests ===


Running target unix/-m32
FAIL: objc.dg/no-extra-load.m -fnext-runtime (test for excess errors)
UNRESOLVED: objc.dg/no-extra-load.m scan-assembler-not L_objc_msgSend\\\\\$non_lazy_ptr
FAIL: objc.dg/objc-foreach-4.m -fnext-runtime (test for excess errors)
FAIL: objc.dg/objc-foreach-5.m -fnext-runtime (test for excess errors)
UNRESOLVED: objc.dg/objc-foreach-5.m scan-assembler _addStuffUp:
FAIL: objc.dg/lto/trivial-1 objc_lto_trivial-1_0.o-objc_lto_trivial-1_0.o link, -O0 -flto -fnext-runtime
UNRESOLVED: objc.dg/lto/trivial-1 objc_lto_trivial-1_0.o-objc_lto_trivial-1_0.o execute -O0 -flto -fnext-runtime
FAIL: objc.dg/lto/trivial-1 objc_lto_trivial-1_0.o-objc_lto_trivial-1_0.o link, -O2 -flto -fnext-runtime
UNRESOLVED: objc.dg/lto/trivial-1 objc_lto_trivial-1_0.o-objc_lto_trivial-1_0.o execute -O2 -flto -fnext-runtime
FAIL: objc.dg/lto/trivial-1 objc_lto_trivial-1_0.o-objc_lto_trivial-1_0.o link, -O0 -flto -flto-partition=none -fnext-runtime
UNRESOLVED: objc.dg/lto/trivial-1 objc_lto_trivial-1_0.o-objc_lto_trivial-1_0.o execute -O0 -flto -flto-partition=none -fnext-runtime
FAIL: objc.dg/lto/trivial-1 objc_lto_trivial-1_0.o-objc_lto_trivial-1_0.o link, -O2 -flto -flto-partition=none -fnext-runtime
UNRESOLVED: objc.dg/lto/trivial-1 objc_lto_trivial-1_0.o-objc_lto_trivial-1_0.o execute -O2 -flto -flto-partition=none -fnext-runtime
FAIL: objc.dg/torture/forward-1.m  -O2 -flto -flto-partition=none  -fnext-runtime (test for excess errors)
WARNING: objc.dg/torture/forward-1.m  -O2 -flto -flto-partition=none  -fnext-runtime compilation failed to produce executable
FAIL: objc.dg/torture/forward-1.m  -O2 -flto  -fnext-runtime (test for excess errors)
WARNING: objc.dg/torture/forward-1.m  -O2 -flto  -fnext-runtime compilation failed to produce executable
FAIL: objc.dg/torture/trivial.m  -O2 -flto -flto-partition=none  -fnext-runtime (test for excess errors)
WARNING: objc.dg/torture/trivial.m  -O2 -flto -flto-partition=none  -fnext-runtime compilation failed to produce executable
FAIL: objc.dg/torture/trivial.m  -O2 -flto  -fnext-runtime (test for excess errors)
WARNING: objc.dg/torture/trivial.m  -O2 -flto  -fnext-runtime compilation failed to produce executable
FAIL: objc.dg/torture/strings/string1.m  -O2 -flto -flto-partition=none  -fnext-runtime (test for excess errors)
FAIL: objc.dg/torture/strings/string1.m  -O2 -flto  -fnext-runtime (test for excess errors)
FAIL: objc.dg/torture/strings/string2.m  -O2 -flto -flto-partition=none  -fnext-runtime (test for excess errors)
FAIL: objc.dg/torture/strings/string2.m  -O2 -flto  -fnext-runtime (test for excess errors)
FAIL: objc.dg/torture/strings/string3.m  -O2 -flto -flto-partition=none  -fnext-runtime (test for excess errors)
FAIL: objc.dg/torture/strings/string3.m  -O2 -flto  -fnext-runtime (test for excess errors)
FAIL: objc.dg/torture/strings/string4.m  -O2 -flto -flto-partition=none  -fnext-runtime (test for excess errors)
FAIL: objc.dg/torture/strings/string4.m  -O2 -flto  -fnext-runtime (test for excess errors)
FAIL: objc.dg/torture/tls/thr-init-3.m  -O2 -flto -flto-partition=none  -fnext-runtime (test for excess errors)
WARNING: objc.dg/torture/tls/thr-init-3.m  -O2 -flto -flto-partition=none  -fnext-runtime compilation failed to produce executable
FAIL: objc.dg/torture/tls/thr-init-3.m  -O2 -flto  -fnext-runtime (test for excess errors)
WARNING: objc.dg/torture/tls/thr-init-3.m  -O2 -flto  -fnext-runtime compilation failed to produce executable

		=== objc Summary for unix/-m32 ===

# of expected passes		6066
# of unexpected failures	21
# of expected failures		6
# of unresolved testcases	6
# of unsupported tests		85

Running target unix/-m64
FAIL: objc.dg/no-extra-load.m -fnext-runtime (test for excess errors)
UNRESOLVED: objc.dg/no-extra-load.m scan-assembler-not L_objc_msgSend\\\\\$non_lazy_ptr
FAIL: objc.dg/objc-foreach-4.m -fnext-runtime (test for excess errors)
FAIL: objc.dg/objc-foreach-5.m -fnext-runtime (test for excess errors)
UNRESOLVED: objc.dg/objc-foreach-5.m scan-assembler _addStuffUp:
FAIL: objc.dg/torture/strings/string1.m  -O2 -flto -flto-partition=none  -fnext-runtime (test for excess errors)
FAIL: objc.dg/torture/strings/string1.m  -O2 -flto  -fnext-runtime (test for excess errors)
FAIL: objc.dg/torture/strings/string2.m  -O2 -flto -flto-partition=none  -fnext-runtime (test for excess errors)
FAIL: objc.dg/torture/strings/string2.m  -O2 -flto  -fnext-runtime (test for excess errors)
FAIL: objc.dg/torture/strings/string3.m  -O2 -flto -flto-partition=none  -fnext-runtime (test for excess errors)
FAIL: objc.dg/torture/strings/string3.m  -O2 -flto  -fnext-runtime (test for excess errors)
FAIL: objc.dg/torture/strings/string4.m  -O2 -flto -flto-partition=none  -fnext-runtime (test for excess errors)
FAIL: objc.dg/torture/strings/string4.m  -O2 -flto  -fnext-runtime (test for excess errors)

		=== objc Summary for unix/-m64 ===

# of expected passes		6038
# of unexpected failures	11
# of expected failures		14
# of unresolved testcases	2
# of unsupported tests		91

		=== objc Summary ===

# of expected passes		12104
# of unexpected failures	32
# of expected failures		20
# of unresolved testcases	8
# of unsupported tests		176
/sw/src/fink.build/gcc47-4.7.0-1/darwin_objdir/gcc/xgcc  version 4.7.0 20120212 (experimental) (GCC) 

		=== boehm-gc tests ===


Running target unix/-m32
FAIL: boehm-gc.c/gctest.c -O2 execution test
FAIL: boehm-gc.c/leak_test.c -O2 execution test
FAIL: boehm-gc.c/thread_leak_test.c -O2 execution test
FAIL: boehm-gc.lib/staticrootstest.c -O2 execution test

		=== boehm-gc Summary for unix/-m32 ===

# of expected passes		8
# of unexpected failures	4
# of unsupported tests		1

Running target unix/-m64
FAIL: boehm-gc.c/gctest.c -O2 execution test
FAIL: boehm-gc.c/leak_test.c -O2 execution test
FAIL: boehm-gc.c/thread_leak_test.c -O2 execution test
FAIL: boehm-gc.lib/staticrootstest.c -O2 execution test

		=== boehm-gc Summary for unix/-m64 ===

# of expected passes		8
# of unexpected failures	4
# of unsupported tests		1

		=== boehm-gc Summary ===

# of expected passes		16
# of unexpected failures	8
# of unsupported tests		2
		=== libffi tests ===


Running target unix/-m32

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

# of expected passes		1634
# of expected failures		10
# of unsupported tests		55

Running target unix/-m64

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

# of expected passes		1634
# of expected failures		10
# of unsupported tests		55

		=== libffi Summary ===

# of expected passes		3268
# of expected failures		20
# of unsupported tests		110
		=== libgomp tests ===


Running target unix/-m32

		=== libgomp Summary for unix/-m32 ===

# of expected passes		2990
# of unsupported tests		3

Running target unix/-m64

		=== libgomp Summary for unix/-m64 ===

# of expected passes		2990
# of unsupported tests		3

		=== libgomp Summary ===

# of expected passes		5980
# of unsupported tests		6
		=== libitm tests ===


Running target unix/-m32

		=== libitm Summary for unix/-m32 ===

# of expected passes		26
# of expected failures		3
# of unsupported tests		1

Running target unix/-m64

		=== libitm Summary for unix/-m64 ===

# of expected passes		26
# of expected failures		3
# of unsupported tests		1

		=== libitm Summary ===

# of expected passes		52
# of expected failures		6
# of unsupported tests		2
		=== libjava tests ===


Running target unix/-m32
FAIL: PR16923.c compilation

		=== libjava Summary for unix/-m32 ===

# of expected passes		2572
# of unexpected failures	1

Running target unix/-m64
FAIL: PR16923 run
FAIL: Throw_2 execution - source compiled test
FAIL: Throw_2 -findirect-dispatch execution - source compiled test
FAIL: Throw_2 -O3 execution - source compiled test
FAIL: Throw_2 -O3 -findirect-dispatch execution - source compiled test

		=== libjava Summary for unix/-m64 ===

# of expected passes		2565
# of unexpected failures	5
# of untested testcases		5

		=== libjava Summary ===

# of expected passes		5137
# of unexpected failures	6
# of untested testcases		5
		=== libstdc++ tests ===


Running target unix/-m32
FAIL: ext/profile/mutex_extensions_neg.cc (test for excess errors)

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

# of expected passes		7784
# of unexpected failures	1
# of expected failures		43
# of unsupported tests		572

Running target unix/-m64

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

# of expected passes		7783
# of expected failures		43
# of unsupported tests		573

		=== libstdc++ Summary ===

# of expected passes		15567
# of unexpected failures	1
# of expected failures		86
# of unsupported tests		1145

Compiler version: 4.7.0 20120212 (experimental) (GCC) 
Platform: x86_64-apple-darwin11.3.0
configure flags: --prefix=/sw --prefix=/sw/lib/gcc4.7 --mandir=/sw/share/man --infodir=/sw/lib/gcc4.7/info --with-build-config=bootstrap-lto --enable-stage1-languages=c,lto --enable-languages=c,c++,fortran,lto,objc,obj-c++,java --with-gmp=/sw --with-libiconv-prefix=/sw --with-ppl=/sw --with-cloog=/sw --with-mpc=/sw --with-system-zlib --x-includes=/usr/X11R6/include --x-libraries=/usr/X11R6/lib --program-suffix=-fsf-4.7 --enable-checking=release --enable-cloog-backend=isl



More information about the Gcc-testresults mailing list