Results for 4.8.0 20121228 (experimental) (GCC) testsuite on x86_64-apple-darwin12.2.0

Jack Howarth howarth@bromo.med.uc.edu
Mon Dec 31 22:55:00 GMT 2012


r194744 with isl 0.11.1 and cloog 0.18 using...

Index: configure.ac
===================================================================
--- configure.ac	(revision 194744)
+++ configure.ac	(working copy)
@@ -1607,7 +1607,7 @@ if test "x$with_isl" != "xno" &&
   dnl with user input.
   ISL_INIT_FLAGS
   dnl The minimal version of ISL required for Graphite.
-  ISL_CHECK_VERSION(0,10)
+  ISL_CHECK_VERSION(0,11,1)
   dnl Only execute fail-action, if ISL has been requested.
   ISL_IF_FAILED([
     AC_MSG_ERROR([Unable to find a usable ISL.  See config.log for details.])])
@@ -1621,7 +1621,7 @@ if test "x$with_isl" != "xno" &&
     dnl
     dnl If we use CLooG-Legacy, the provided version information is
     dnl ignored.
-    CLOOG_CHECK_VERSION(0,17,0)
+    CLOOG_CHECK_VERSION(0,18,0)
 
     dnl Only execute fail-action, if CLooG has been requested.
     CLOOG_IF_FAILED([
Index: config/isl.m4
===================================================================
--- config/isl.m4	(revision 194744)
+++ config/isl.m4	(working copy)
@@ -89,13 +89,13 @@ AC_DEFUN([ISL_REQUESTED],
 ]
 )
 
-# _ISL_CHECK_CT_PROG(MAJOR, MINOR)
+# _ISL_CHECK_CT_PROG(MAJOR, MINOR, REVISION)
 # --------------------------------------------
 # Helper for verifying ISL compile time version.
 m4_define([_ISL_CHECK_CT_PROG],[AC_LANG_PROGRAM(
   [#include <isl/version.h>
    #include <string.h>],
-  [if (strncmp (isl_version (), "isl-$1.$2", strlen ("isl-$1.$2")) != 0)
+  [if (strncmp (isl_version (), "isl-$1.$2.$3", strlen ("isl-$1.$2.$3")) != 0)
      return 1;
    ])])
 
@@ -115,9 +115,9 @@ AC_DEFUN([ISL_CHECK_VERSION],
     LIBS="${_isl_saved_LIBS} -lisl"
     echo $CFLAGS
 
-    AC_CACHE_CHECK([for version $1.$2 of ISL],
+    AC_CACHE_CHECK([for version $1.$2.$3 of ISL],
       [gcc_cv_isl],
-      [AC_RUN_IFELSE([_ISL_CHECK_CT_PROG($1,$2)],
+      [AC_RUN_IFELSE([_ISL_CHECK_CT_PROG($1,$2,$3)],
 	[gcc_cv_isl=yes],
 	[gcc_cv_isl=no],
 	[gcc_cv_isl=yes])])

and

Index: gcc/testsuite/lib/target-supports.exp
===================================================================
--- gcc/testsuite/lib/target-supports.exp	(revision 194744)
+++ gcc/testsuite/lib/target-supports.exp	(working copy)
@@ -731,12 +731,23 @@ proc check_effective_target_clone {} {
 
 # Return 1 if the target supports setrlimit, 0 otherwise.
 proc check_effective_target_setrlimit {} {
+    # Darwin has non-posix compliant RLIMIT_AS
+    if { [istarget *-*-darwin*] } {
+        return 0
+    }
     return [check_function_available "setrlimit"]
 }
 
 # Return 1 if the target supports swapcontext, 0 otherwise.
 proc check_effective_target_swapcontext {} {
-    return [check_function_available "swapcontext"]
+    return [check_no_compiler_messages swapcontext executable {
+	#include <ucontext.h>
+	int main (void)
+	{
+	  ucontext_t orig_context,child_context;
+	  if (swapcontext(&child_context, &orig_context) < 0) { }
+	}
+    }]
 }
 
 # Return 1 if compilation with -pthread is error-free for trivial
Index: gcc/testsuite/g++.dg/asan/interception-test-1.C
===================================================================
--- gcc/testsuite/g++.dg/asan/interception-test-1.C	(revision 194744)
+++ gcc/testsuite/g++.dg/asan/interception-test-1.C	(working copy)
@@ -3,6 +3,7 @@
 // { dg-do run }
 // { dg-options "-fno-builtin-malloc -fno-builtin-free" }
 // { dg-shouldfail "asan" }
+// { dg-skip-if "Darwin uses mac function interposition" { *-*-darwin* } }
 
 #include <stdlib.h>
 #include <stdio.h>

as well as http://gcc.gnu.org/ml/gcc-patches/2012-12/msg01436.html.

Native configuration is x86_64-apple-darwin12.2.0

		=== g++ tests ===


Running target unix/-m32
FAIL: g++.dg/debug/dwarf2/nested-4.C -std=gnu++98  scan-assembler-times debug_types 2
FAIL: g++.dg/debug/dwarf2/nested-4.C -std=gnu++11  scan-assembler-times debug_types 2
UNRESOLVED: g++.dg/ext/label13.C -std=gnu++98 compilation failed to produce executable
UNRESOLVED: g++.dg/ext/label13.C -std=gnu++11 compilation failed to produce executable
FAIL: g++.dg/gomp/tls-5.C -std=c++11 (test for excess errors)
FAIL: g++.dg/tls/thread_local-cse.C (test for excess errors)
UNRESOLVED: g++.dg/tls/thread_local-cse.C compilation failed to produce executable
FAIL: g++.dg/tls/thread_local-order1.C (test for excess errors)
UNRESOLVED: g++.dg/tls/thread_local-order1.C compilation failed to produce executable
FAIL: g++.dg/tls/thread_local-order2.C (test for excess errors)
UNRESOLVED: g++.dg/tls/thread_local-order2.C compilation failed to produce executable
FAIL: g++.dg/tls/thread_local2g.C (test for excess errors)
UNRESOLVED: g++.dg/tls/thread_local2g.C compilation failed to produce executable
FAIL: g++.dg/tls/thread_local3g.C -std=gnu++11 (test for excess errors)
UNRESOLVED: g++.dg/tls/thread_local3g.C -std=gnu++11 compilation failed to produce executable
FAIL: g++.dg/tls/thread_local4g.C -std=gnu++11 (test for excess errors)
UNRESOLVED: g++.dg/tls/thread_local4g.C -std=gnu++11 compilation failed to produce executable
FAIL: g++.dg/tls/thread_local5g.C -std=gnu++11 (test for excess errors)
UNRESOLVED: g++.dg/tls/thread_local5g.C -std=gnu++11 compilation failed to produce executable
FAIL: g++.dg/tls/thread_local6g.C (test for excess errors)
UNRESOLVED: g++.dg/tls/thread_local6g.C compilation failed to produce executable
FAIL: g++.dg/tls/thread_local7g.C (test for excess errors)

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

# of expected passes		50688
# of unexpected failures	12
# of expected failures		290
# of unresolved testcases	10
# of unsupported tests		613

Running target unix/-m64
FAIL: g++.dg/debug/dwarf2/nested-4.C -std=gnu++98  scan-assembler-times debug_types 2
FAIL: g++.dg/debug/dwarf2/nested-4.C -std=gnu++11  scan-assembler-times debug_types 2
UNRESOLVED: g++.dg/ext/label13.C -std=gnu++98 compilation failed to produce executable
UNRESOLVED: g++.dg/ext/label13.C -std=gnu++11 compilation failed to produce executable
FAIL: g++.dg/gomp/tls-5.C -std=c++11 (test for excess errors)
FAIL: g++.dg/tls/thread_local-cse.C (test for excess errors)
UNRESOLVED: g++.dg/tls/thread_local-cse.C compilation failed to produce executable
FAIL: g++.dg/tls/thread_local-order1.C (test for excess errors)
UNRESOLVED: g++.dg/tls/thread_local-order1.C compilation failed to produce executable
FAIL: g++.dg/tls/thread_local-order2.C (test for excess errors)
UNRESOLVED: g++.dg/tls/thread_local-order2.C compilation failed to produce executable
FAIL: g++.dg/tls/thread_local2g.C (test for excess errors)
UNRESOLVED: g++.dg/tls/thread_local2g.C compilation failed to produce executable
FAIL: g++.dg/tls/thread_local3g.C -std=gnu++11 (test for excess errors)
UNRESOLVED: g++.dg/tls/thread_local3g.C -std=gnu++11 compilation failed to produce executable
FAIL: g++.dg/tls/thread_local4g.C -std=gnu++11 (test for excess errors)
UNRESOLVED: g++.dg/tls/thread_local4g.C -std=gnu++11 compilation failed to produce executable
FAIL: g++.dg/tls/thread_local5g.C -std=gnu++11 (test for excess errors)
UNRESOLVED: g++.dg/tls/thread_local5g.C -std=gnu++11 compilation failed to produce executable
FAIL: g++.dg/tls/thread_local6g.C (test for excess errors)
UNRESOLVED: g++.dg/tls/thread_local6g.C compilation failed to produce executable
FAIL: g++.dg/tls/thread_local7g.C (test for excess errors)

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

# of expected passes		51475
# of unexpected failures	12
# of expected failures		290
# of unresolved testcases	10
# of unsupported tests		842

		=== g++ Summary ===

# of expected passes		102163
# of unexpected failures	24
# of expected failures		580
# of unresolved testcases	20
# of unsupported tests		1455
/sw/src/fink.build/gcc48-4.8.0-1000/darwin_objdir/gcc/testsuite/g++/../../xg++  version 4.8.0 20121228 (experimental) (GCC) 

		=== gcc tests ===


Running target unix/-m32
FAIL: gcc.c-torture/execute/pr51447.c execution,  -O0 
FAIL: gcc.c-torture/execute/pr51447.c execution,  -O1 
FAIL: gcc.c-torture/execute/pr51447.c execution,  -O2 
FAIL: gcc.c-torture/execute/pr51447.c execution,  -O3 -fomit-frame-pointer 
FAIL: gcc.c-torture/execute/pr51447.c execution,  -O3 -g 
FAIL: gcc.c-torture/execute/pr51447.c execution,  -Os 
FAIL: gcc.c-torture/execute/pr51447.c execution,  -Og -g 
FAIL: gcc.c-torture/execute/pr51447.c execution,  -O2 -flto -flto-partition=none 
FAIL: gcc.c-torture/execute/pr51447.c execution,  -O2 -flto 
FAIL: c-c++-common/asan/global-overflow-1.c  -O1  execution test
FAIL: c-c++-common/asan/global-overflow-1.c  -O2  execution test
FAIL: c-c++-common/asan/global-overflow-1.c  -O3 -fomit-frame-pointer  execution test
FAIL: c-c++-common/asan/global-overflow-1.c  -O3 -g  execution test
FAIL: c-c++-common/asan/global-overflow-1.c  -Os  execution test
FAIL: c-c++-common/asan/global-overflow-1.c  -O2 -flto -flto-partition=none  execution test
FAIL: c-c++-common/asan/global-overflow-1.c  -O2 -flto  execution test
FAIL: c-c++-common/asan/stack-overflow-1.c  -O1  execution test
FAIL: c-c++-common/asan/stack-overflow-1.c  -O2  execution test
FAIL: c-c++-common/asan/stack-overflow-1.c  -O3 -fomit-frame-pointer  execution test
FAIL: c-c++-common/asan/stack-overflow-1.c  -O3 -g  execution test
FAIL: c-c++-common/asan/stack-overflow-1.c  -Os  execution test
FAIL: c-c++-common/asan/stack-overflow-1.c  -O2 -flto -flto-partition=none  execution test
FAIL: c-c++-common/asan/stack-overflow-1.c  -O2 -flto  execution test
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

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

# of expected passes		88903
# of unexpected failures	25
# of expected failures		256
# of unresolved testcases	3
# of unsupported tests		2071

Running target unix/-m64
FAIL: c-c++-common/asan/global-overflow-1.c  -O1  execution test
FAIL: c-c++-common/asan/global-overflow-1.c  -O2  execution test
FAIL: c-c++-common/asan/global-overflow-1.c  -O3 -fomit-frame-pointer  execution test
FAIL: c-c++-common/asan/global-overflow-1.c  -O3 -g  execution test
FAIL: c-c++-common/asan/global-overflow-1.c  -Os  execution test
FAIL: c-c++-common/asan/global-overflow-1.c  -O2 -flto -flto-partition=none  execution test
FAIL: c-c++-common/asan/global-overflow-1.c  -O2 -flto  execution test
FAIL: c-c++-common/asan/stack-overflow-1.c  -O1  execution test
FAIL: c-c++-common/asan/stack-overflow-1.c  -O2  execution test
FAIL: c-c++-common/asan/stack-overflow-1.c  -O3 -fomit-frame-pointer  execution test
FAIL: c-c++-common/asan/stack-overflow-1.c  -O3 -g  execution test
FAIL: c-c++-common/asan/stack-overflow-1.c  -Os  execution test
FAIL: c-c++-common/asan/stack-overflow-1.c  -O2 -flto -flto-partition=none  execution test
FAIL: c-c++-common/asan/stack-overflow-1.c  -O2 -flto  execution test
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/pr45354.c compilation,  -fprofile-use -D_PROFILE_USE
UNRESOLVED: gcc.dg/tree-prof/pr45354.c execution,    -fprofile-use -D_PROFILE_USE
FAIL: gcc.dg/tree-prof/pr50907.c compilation,  -fprofile-use -D_PROFILE_USE
UNRESOLVED: gcc.dg/tree-prof/pr50907.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.target/i386/pr49866.c (test for excess errors)

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

# of expected passes		89240
# of unexpected failures	19
# of expected failures		259
# of unresolved testcases	4
# of unsupported tests		2367

		=== gcc Summary ===

# of expected passes		178143
# of unexpected failures	44
# of expected failures		515
# of unresolved testcases	7
# of unsupported tests		4438
/sw/src/fink.build/gcc48-4.8.0-1000/darwin_objdir/gcc/xgcc  version 4.8.0 20121228 (experimental) (GCC) 

		=== gfortran tests ===


Running target unix/-m32
XPASS: gfortran.dg/do_1.f90  -O0  execution test
XPASS: gfortran.dg/do_1.f90  -O1  execution test
FAIL: gfortran.dg/secnds.f  -O1  execution test
FAIL: gfortran.dg/lto/pr45586-2 f_lto_pr45586-2_0.o-f_lto_pr45586-2_0.o link, -O0 -flto -flto-partition=none  (internal compiler error)
UNRESOLVED: gfortran.dg/lto/pr45586-2 f_lto_pr45586-2_0.o-f_lto_pr45586-2_0.o execute -O0 -flto -flto-partition=none 
FAIL: gfortran.dg/lto/pr45586-2 f_lto_pr45586-2_0.o-f_lto_pr45586-2_0.o link, -O0 -flto -flto-partition=1to1  (internal compiler error)
UNRESOLVED: gfortran.dg/lto/pr45586-2 f_lto_pr45586-2_0.o-f_lto_pr45586-2_0.o execute -O0 -flto -flto-partition=1to1 
FAIL: gfortran.dg/lto/pr45586-2 f_lto_pr45586-2_0.o-f_lto_pr45586-2_0.o link, -O0 -flto  (internal compiler error)
UNRESOLVED: gfortran.dg/lto/pr45586-2 f_lto_pr45586-2_0.o-f_lto_pr45586-2_0.o execute -O0 -flto 
FAIL: gfortran.dg/lto/pr45586 f_lto_pr45586_0.o-f_lto_pr45586_0.o link, -O0 -flto -flto-partition=none  (internal compiler error)
UNRESOLVED: gfortran.dg/lto/pr45586 f_lto_pr45586_0.o-f_lto_pr45586_0.o execute -O0 -flto -flto-partition=none 
FAIL: gfortran.dg/lto/pr45586 f_lto_pr45586_0.o-f_lto_pr45586_0.o link, -O0 -flto -flto-partition=1to1  (internal compiler error)
UNRESOLVED: gfortran.dg/lto/pr45586 f_lto_pr45586_0.o-f_lto_pr45586_0.o execute -O0 -flto -flto-partition=1to1 
FAIL: gfortran.dg/lto/pr45586 f_lto_pr45586_0.o-f_lto_pr45586_0.o link, -O0 -flto  (internal compiler error)
UNRESOLVED: gfortran.dg/lto/pr45586 f_lto_pr45586_0.o-f_lto_pr45586_0.o execute -O0 -flto 

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

# of expected passes		42400
# of unexpected failures	7
# of unexpected successes	2
# of expected failures		62
# of unresolved testcases	6
# of unsupported tests		210

Running target unix/-m64
XPASS: gfortran.dg/do_1.f90  -O0  execution test
XPASS: gfortran.dg/do_1.f90  -O1  execution test
FAIL: gfortran.dg/lto/pr45586-2 f_lto_pr45586-2_0.o-f_lto_pr45586-2_0.o link, -O0 -flto -flto-partition=none  (internal compiler error)
UNRESOLVED: gfortran.dg/lto/pr45586-2 f_lto_pr45586-2_0.o-f_lto_pr45586-2_0.o execute -O0 -flto -flto-partition=none 
FAIL: gfortran.dg/lto/pr45586-2 f_lto_pr45586-2_0.o-f_lto_pr45586-2_0.o link, -O0 -flto -flto-partition=1to1  (internal compiler error)
UNRESOLVED: gfortran.dg/lto/pr45586-2 f_lto_pr45586-2_0.o-f_lto_pr45586-2_0.o execute -O0 -flto -flto-partition=1to1 
FAIL: gfortran.dg/lto/pr45586-2 f_lto_pr45586-2_0.o-f_lto_pr45586-2_0.o link, -O0 -flto  (internal compiler error)
UNRESOLVED: gfortran.dg/lto/pr45586-2 f_lto_pr45586-2_0.o-f_lto_pr45586-2_0.o execute -O0 -flto 
FAIL: gfortran.dg/lto/pr45586 f_lto_pr45586_0.o-f_lto_pr45586_0.o link, -O0 -flto -flto-partition=none  (internal compiler error)
UNRESOLVED: gfortran.dg/lto/pr45586 f_lto_pr45586_0.o-f_lto_pr45586_0.o execute -O0 -flto -flto-partition=none 
FAIL: gfortran.dg/lto/pr45586 f_lto_pr45586_0.o-f_lto_pr45586_0.o link, -O0 -flto -flto-partition=1to1  (internal compiler error)
UNRESOLVED: gfortran.dg/lto/pr45586 f_lto_pr45586_0.o-f_lto_pr45586_0.o execute -O0 -flto -flto-partition=1to1 
FAIL: gfortran.dg/lto/pr45586 f_lto_pr45586_0.o-f_lto_pr45586_0.o link, -O0 -flto  (internal compiler error)
UNRESOLVED: gfortran.dg/lto/pr45586 f_lto_pr45586_0.o-f_lto_pr45586_0.o execute -O0 -flto 

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

# of expected passes		42688
# of unexpected failures	6
# of unexpected successes	2
# of expected failures		62
# of unresolved testcases	6
# of unsupported tests		72

		=== gfortran Summary ===

# of expected passes		85088
# of unexpected failures	13
# of unexpected successes	4
# of expected failures		124
# of unresolved testcases	12
# of unsupported tests		282
/sw/src/fink.build/gcc48-4.8.0-1000/darwin_objdir/gcc/testsuite/gfortran/../../gfortran  version 4.8.0 20121228 (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/gnu-api-2-objc.mm -fnext-runtime execution test
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/-m32 ===

# of expected passes		3155
# of unexpected failures	4
# of expected failures		2
# of unsupported tests		68

Running target unix/-m64
FAIL: obj-c++.dg/gnu-api-2-objc.mm -fnext-runtime execution test
FAIL: obj-c++.dg/method-12.mm -fnext-runtime (test for excess errors)
FAIL: obj-c++.dg/proto-lossage-7.mm -fnext-runtime (internal compiler error)
FAIL: obj-c++.dg/proto-lossage-7.mm -fnext-runtime (test for excess errors)
FAIL: obj-c++.dg/syntax-error-1.mm -fnext-runtime (test for excess errors)
FAIL: obj-c++.dg/property/at-property-13.mm -fgnu-runtime execution test
FAIL: obj-c++.dg/strings/const-cfstring-5.mm -fnext-runtime (test for excess errors)
FAIL: obj-c++.dg/strings/const-str-12.mm -fnext-runtime (test for excess errors)
FAIL: obj-c++.dg/torture/strings/const-str-10.mm  -O0  -fnext-runtime (test for excess errors)
UNRESOLVED: obj-c++.dg/torture/strings/const-str-10.mm  -O0  -fnext-runtime  scan-assembler .section __DATA, __objc_stringobj
UNRESOLVED: obj-c++.dg/torture/strings/const-str-10.mm  -O0  -fnext-runtime  scan-assembler .quad\\t_OBJC_CLASS_._NSConstantString\\n\\t.quad\\t.*\\n\\t.long\\t5\\n\\t.space
FAIL: obj-c++.dg/torture/strings/const-str-10.mm  -O1  -fnext-runtime (test for excess errors)
UNRESOLVED: obj-c++.dg/torture/strings/const-str-10.mm  -O1  -fnext-runtime  scan-assembler .section __DATA, __objc_stringobj
UNRESOLVED: obj-c++.dg/torture/strings/const-str-10.mm  -O1  -fnext-runtime  scan-assembler .quad\\t_OBJC_CLASS_._NSConstantString\\n\\t.quad\\t.*\\n\\t.long\\t5\\n\\t.space
FAIL: obj-c++.dg/torture/strings/const-str-10.mm  -O2  -fnext-runtime (test for excess errors)
UNRESOLVED: obj-c++.dg/torture/strings/const-str-10.mm  -O2  -fnext-runtime  scan-assembler .section __DATA, __objc_stringobj
UNRESOLVED: obj-c++.dg/torture/strings/const-str-10.mm  -O2  -fnext-runtime  scan-assembler .quad\\t_OBJC_CLASS_._NSConstantString\\n\\t.quad\\t.*\\n\\t.long\\t5\\n\\t.space
FAIL: obj-c++.dg/torture/strings/const-str-10.mm  -O3 -fomit-frame-pointer  -fnext-runtime (test for excess errors)
UNRESOLVED: obj-c++.dg/torture/strings/const-str-10.mm  -O3 -fomit-frame-pointer  -fnext-runtime  scan-assembler .section __DATA, __objc_stringobj
UNRESOLVED: obj-c++.dg/torture/strings/const-str-10.mm  -O3 -fomit-frame-pointer  -fnext-runtime  scan-assembler .quad\\t_OBJC_CLASS_._NSConstantString\\n\\t.quad\\t.*\\n\\t.long\\t5\\n\\t.space
FAIL: obj-c++.dg/torture/strings/const-str-10.mm  -O3 -g  -fnext-runtime (test for excess errors)
UNRESOLVED: obj-c++.dg/torture/strings/const-str-10.mm  -O3 -g  -fnext-runtime  scan-assembler .section __DATA, __objc_stringobj
UNRESOLVED: obj-c++.dg/torture/strings/const-str-10.mm  -O3 -g  -fnext-runtime  scan-assembler .quad\\t_OBJC_CLASS_._NSConstantString\\n\\t.quad\\t.*\\n\\t.long\\t5\\n\\t.space
FAIL: obj-c++.dg/torture/strings/const-str-10.mm  -Os  -fnext-runtime (test for excess errors)
UNRESOLVED: obj-c++.dg/torture/strings/const-str-10.mm  -Os  -fnext-runtime  scan-assembler .section __DATA, __objc_stringobj
UNRESOLVED: obj-c++.dg/torture/strings/const-str-10.mm  -Os  -fnext-runtime  scan-assembler .quad\\t_OBJC_CLASS_._NSConstantString\\n\\t.quad\\t.*\\n\\t.long\\t5\\n\\t.space
FAIL: obj-c++.dg/torture/strings/const-str-10.mm  -O2 -flto -flto-partition=none  -fnext-runtime (test for excess errors)
UNRESOLVED: obj-c++.dg/torture/strings/const-str-10.mm  -O2 -flto -flto-partition=none  -fnext-runtime  scan-assembler .section __DATA, __objc_stringobj
UNRESOLVED: obj-c++.dg/torture/strings/const-str-10.mm  -O2 -flto -flto-partition=none  -fnext-runtime  scan-assembler .quad\\t_OBJC_CLASS_._NSConstantString\\n\\t.quad\\t.*\\n\\t.long\\t5\\n\\t.space
FAIL: obj-c++.dg/torture/strings/const-str-10.mm  -O2 -flto  -fnext-runtime (test for excess errors)
UNRESOLVED: obj-c++.dg/torture/strings/const-str-10.mm  -O2 -flto  -fnext-runtime  scan-assembler .section __DATA, __objc_stringobj
UNRESOLVED: obj-c++.dg/torture/strings/const-str-10.mm  -O2 -flto  -fnext-runtime  scan-assembler .quad\\t_OBJC_CLASS_._NSConstantString\\n\\t.quad\\t.*\\n\\t.long\\t5\\n\\t.space
FAIL: obj-c++.dg/torture/strings/const-str-11.mm  -O0  -fnext-runtime (test for excess errors)
UNRESOLVED: obj-c++.dg/torture/strings/const-str-11.mm  -O0  -fnext-runtime  scan-assembler .section __DATA, __objc_stringobj
UNRESOLVED: obj-c++.dg/torture/strings/const-str-11.mm  -O0  -fnext-runtime  scan-assembler .quad\\t_OBJC_CLASS_._XStr\\n\\t.quad\\t.*\\n\\t.long\\t5\\n\\t.space
FAIL: obj-c++.dg/torture/strings/const-str-11.mm  -O1  -fnext-runtime (test for excess errors)
UNRESOLVED: obj-c++.dg/torture/strings/const-str-11.mm  -O1  -fnext-runtime  scan-assembler .section __DATA, __objc_stringobj
UNRESOLVED: obj-c++.dg/torture/strings/const-str-11.mm  -O1  -fnext-runtime  scan-assembler .quad\\t_OBJC_CLASS_._XStr\\n\\t.quad\\t.*\\n\\t.long\\t5\\n\\t.space
FAIL: obj-c++.dg/torture/strings/const-str-11.mm  -O2  -fnext-runtime (test for excess errors)
UNRESOLVED: obj-c++.dg/torture/strings/const-str-11.mm  -O2  -fnext-runtime  scan-assembler .section __DATA, __objc_stringobj
UNRESOLVED: obj-c++.dg/torture/strings/const-str-11.mm  -O2  -fnext-runtime  scan-assembler .quad\\t_OBJC_CLASS_._XStr\\n\\t.quad\\t.*\\n\\t.long\\t5\\n\\t.space
FAIL: obj-c++.dg/torture/strings/const-str-11.mm  -O3 -fomit-frame-pointer  -fnext-runtime (test for excess errors)
UNRESOLVED: obj-c++.dg/torture/strings/const-str-11.mm  -O3 -fomit-frame-pointer  -fnext-runtime  scan-assembler .section __DATA, __objc_stringobj
UNRESOLVED: obj-c++.dg/torture/strings/const-str-11.mm  -O3 -fomit-frame-pointer  -fnext-runtime  scan-assembler .quad\\t_OBJC_CLASS_._XStr\\n\\t.quad\\t.*\\n\\t.long\\t5\\n\\t.space
FAIL: obj-c++.dg/torture/strings/const-str-11.mm  -O3 -g  -fnext-runtime (test for excess errors)
UNRESOLVED: obj-c++.dg/torture/strings/const-str-11.mm  -O3 -g  -fnext-runtime  scan-assembler .section __DATA, __objc_stringobj
UNRESOLVED: obj-c++.dg/torture/strings/const-str-11.mm  -O3 -g  -fnext-runtime  scan-assembler .quad\\t_OBJC_CLASS_._XStr\\n\\t.quad\\t.*\\n\\t.long\\t5\\n\\t.space
FAIL: obj-c++.dg/torture/strings/const-str-11.mm  -Os  -fnext-runtime (test for excess errors)
UNRESOLVED: obj-c++.dg/torture/strings/const-str-11.mm  -Os  -fnext-runtime  scan-assembler .section __DATA, __objc_stringobj
UNRESOLVED: obj-c++.dg/torture/strings/const-str-11.mm  -Os  -fnext-runtime  scan-assembler .quad\\t_OBJC_CLASS_._XStr\\n\\t.quad\\t.*\\n\\t.long\\t5\\n\\t.space
FAIL: obj-c++.dg/torture/strings/const-str-11.mm  -O2 -flto -flto-partition=none  -fnext-runtime (test for excess errors)
UNRESOLVED: obj-c++.dg/torture/strings/const-str-11.mm  -O2 -flto -flto-partition=none  -fnext-runtime  scan-assembler .section __DATA, __objc_stringobj
UNRESOLVED: obj-c++.dg/torture/strings/const-str-11.mm  -O2 -flto -flto-partition=none  -fnext-runtime  scan-assembler .quad\\t_OBJC_CLASS_._XStr\\n\\t.quad\\t.*\\n\\t.long\\t5\\n\\t.space
FAIL: obj-c++.dg/torture/strings/const-str-11.mm  -O2 -flto  -fnext-runtime (test for excess errors)
UNRESOLVED: obj-c++.dg/torture/strings/const-str-11.mm  -O2 -flto  -fnext-runtime  scan-assembler .section __DATA, __objc_stringobj
UNRESOLVED: obj-c++.dg/torture/strings/const-str-11.mm  -O2 -flto  -fnext-runtime  scan-assembler .quad\\t_OBJC_CLASS_._XStr\\n\\t.quad\\t.*\\n\\t.long\\t5\\n\\t.space
FAIL: obj-c++.dg/torture/strings/const-str-9.mm  -O0  -fnext-runtime (test for excess errors)
UNRESOLVED: obj-c++.dg/torture/strings/const-str-9.mm  -O0  -fnext-runtime  scan-assembler .section __DATA, __objc_stringobj
UNRESOLVED: obj-c++.dg/torture/strings/const-str-9.mm  -O0  -fnext-runtime  scan-assembler .quad\\t_OBJC_CLASS_._NSConstantString\\n\\t.quad\\t.*\\n\\t.long\\t5\\n\\t.space
FAIL: obj-c++.dg/torture/strings/const-str-9.mm  -O1  -fnext-runtime (test for excess errors)
UNRESOLVED: obj-c++.dg/torture/strings/const-str-9.mm  -O1  -fnext-runtime  scan-assembler .section __DATA, __objc_stringobj
UNRESOLVED: obj-c++.dg/torture/strings/const-str-9.mm  -O1  -fnext-runtime  scan-assembler .quad\\t_OBJC_CLASS_._NSConstantString\\n\\t.quad\\t.*\\n\\t.long\\t5\\n\\t.space
FAIL: obj-c++.dg/torture/strings/const-str-9.mm  -O2  -fnext-runtime (test for excess errors)
UNRESOLVED: obj-c++.dg/torture/strings/const-str-9.mm  -O2  -fnext-runtime  scan-assembler .section __DATA, __objc_stringobj
UNRESOLVED: obj-c++.dg/torture/strings/const-str-9.mm  -O2  -fnext-runtime  scan-assembler .quad\\t_OBJC_CLASS_._NSConstantString\\n\\t.quad\\t.*\\n\\t.long\\t5\\n\\t.space
FAIL: obj-c++.dg/torture/strings/const-str-9.mm  -O3 -fomit-frame-pointer  -fnext-runtime (test for excess errors)
UNRESOLVED: obj-c++.dg/torture/strings/const-str-9.mm  -O3 -fomit-frame-pointer  -fnext-runtime  scan-assembler .section __DATA, __objc_stringobj
UNRESOLVED: obj-c++.dg/torture/strings/const-str-9.mm  -O3 -fomit-frame-pointer  -fnext-runtime  scan-assembler .quad\\t_OBJC_CLASS_._NSConstantString\\n\\t.quad\\t.*\\n\\t.long\\t5\\n\\t.space
FAIL: obj-c++.dg/torture/strings/const-str-9.mm  -O3 -g  -fnext-runtime (test for excess errors)
UNRESOLVED: obj-c++.dg/torture/strings/const-str-9.mm  -O3 -g  -fnext-runtime  scan-assembler .section __DATA, __objc_stringobj
UNRESOLVED: obj-c++.dg/torture/strings/const-str-9.mm  -O3 -g  -fnext-runtime  scan-assembler .quad\\t_OBJC_CLASS_._NSConstantString\\n\\t.quad\\t.*\\n\\t.long\\t5\\n\\t.space
FAIL: obj-c++.dg/torture/strings/const-str-9.mm  -Os  -fnext-runtime (test for excess errors)
UNRESOLVED: obj-c++.dg/torture/strings/const-str-9.mm  -Os  -fnext-runtime  scan-assembler .section __DATA, __objc_stringobj
UNRESOLVED: obj-c++.dg/torture/strings/const-str-9.mm  -Os  -fnext-runtime  scan-assembler .quad\\t_OBJC_CLASS_._NSConstantString\\n\\t.quad\\t.*\\n\\t.long\\t5\\n\\t.space
FAIL: obj-c++.dg/torture/strings/const-str-9.mm  -O2 -flto -flto-partition=none  -fnext-runtime (test for excess errors)
UNRESOLVED: obj-c++.dg/torture/strings/const-str-9.mm  -O2 -flto -flto-partition=none  -fnext-runtime  scan-assembler .section __DATA, __objc_stringobj
UNRESOLVED: obj-c++.dg/torture/strings/const-str-9.mm  -O2 -flto -flto-partition=none  -fnext-runtime  scan-assembler .quad\\t_OBJC_CLASS_._NSConstantString\\n\\t.quad\\t.*\\n\\t.long\\t5\\n\\t.space
FAIL: obj-c++.dg/torture/strings/const-str-9.mm  -O2 -flto  -fnext-runtime (test for excess errors)
UNRESOLVED: obj-c++.dg/torture/strings/const-str-9.mm  -O2 -flto  -fnext-runtime  scan-assembler .section __DATA, __objc_stringobj
UNRESOLVED: obj-c++.dg/torture/strings/const-str-9.mm  -O2 -flto  -fnext-runtime  scan-assembler .quad\\t_OBJC_CLASS_._NSConstantString\\n\\t.quad\\t.*\\n\\t.long\\t5\\n\\t.space
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		3028
# of unexpected failures	34
# of expected failures		19
# of unresolved testcases	48
# of unsupported tests		73

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

# of expected passes		6183
# of unexpected failures	38
# of expected failures		21
# of unresolved testcases	48
# of unsupported tests		141
/sw/src/fink.build/gcc48-4.8.0-1000/darwin_objdir/gcc/testsuite/obj-c++/../../xg++  version 4.8.0 20121228 (experimental) (GCC) 

		=== objc tests ===


Running target unix/-m32
FAIL: objc.dg/gnu-api-2-objc.m -fnext-runtime execution test
FAIL: objc.dg/no-extra-load.m -fnext-runtime (test for excess errors)
UNRESOLVED: objc.dg/no-extra-load.m -fnext-runtime  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 -fnext-runtime  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/-m32 ===

# of expected passes		6085
# of unexpected failures	12
# of expected failures		6
# of unresolved testcases	2
# of unsupported tests		85

Running target unix/-m64
FAIL: objc.dg/encode-7-next-64bit.m -fnext-runtime (test for excess errors)
UNRESOLVED: objc.dg/encode-7-next-64bit.m -fnext-runtime compilation failed to produce executable
FAIL: objc.dg/gnu-api-2-objc.m -fnext-runtime execution test
FAIL: objc.dg/image-info.m -fnext-runtime (test for excess errors)
UNRESOLVED: objc.dg/image-info.m -fnext-runtime  scan-assembler \\t.section __DATA, __objc_imageinfo.*\\n\\t.align.*\\nL_OBJC_ImageInfo.*:\\n\\t.long\\t0\\n\\t.long\\t17
FAIL: objc.dg/method-6.m -fnext-runtime (test for excess errors)
FAIL: objc.dg/no-extra-load.m -fnext-runtime (test for excess errors)
UNRESOLVED: objc.dg/no-extra-load.m -fnext-runtime  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 -fnext-runtime  scan-assembler _addStuffUp:
FAIL: objc.dg/pr23214.m -fnext-runtime (test for excess errors)
UNRESOLVED: objc.dg/pr23214.m -fnext-runtime compilation failed to produce executable
FAIL: objc.dg/proto-lossage-7.m -fnext-runtime (test for excess errors)
FAIL: objc.dg/symtab-1.m -fnext-runtime (test for excess errors)
UNRESOLVED: objc.dg/symtab-1.m -fnext-runtime  scan-assembler-not L_OBJC_Symbols
FAIL: objc.dg/zero-link-1.m -fnext-runtime (test for excess errors)
UNRESOLVED: objc.dg/zero-link-1.m -fnext-runtime  scan-assembler-not _OBJC_ClassRef_Base
UNRESOLVED: objc.dg/zero-link-1.m -fnext-runtime  scan-assembler objc_getClass
FAIL: objc.dg/zero-link-2.m -fnext-runtime (test for excess errors)
UNRESOLVED: objc.dg/zero-link-2.m -fnext-runtime  scan-assembler _OBJC_ClassRef_Base
UNRESOLVED: objc.dg/zero-link-2.m -fnext-runtime  scan-assembler-not objc_getClass
FAIL: objc.dg/zero-link-3.m -fnext-runtime (test for excess errors)
UNRESOLVED: objc.dg/zero-link-3.m -fnext-runtime compilation failed to produce executable
FAIL: objc.dg/property/at-property-13.m -fgnu-runtime execution test
FAIL: objc.dg/strings/const-cfstring-5.m -fnext-runtime (test for excess errors)
FAIL: objc.dg/strings/const-str-12b.m -fnext-runtime (test for excess errors)
FAIL: objc.dg/torture/strings/const-str-10.m  -O0  -fnext-runtime (test for excess errors)
UNRESOLVED: objc.dg/torture/strings/const-str-10.m  -O0  -fnext-runtime  scan-assembler .section __DATA, __objc_stringobj
UNRESOLVED: objc.dg/torture/strings/const-str-10.m  -O0  -fnext-runtime  scan-assembler .quad\\t_OBJC_CLASS_._NSConstantString\\n\\t.quad\\t.*\\n\\t.long\\t5\\n\\t.space
FAIL: objc.dg/torture/strings/const-str-10.m  -O1  -fnext-runtime (test for excess errors)
UNRESOLVED: objc.dg/torture/strings/const-str-10.m  -O1  -fnext-runtime  scan-assembler .section __DATA, __objc_stringobj
UNRESOLVED: objc.dg/torture/strings/const-str-10.m  -O1  -fnext-runtime  scan-assembler .quad\\t_OBJC_CLASS_._NSConstantString\\n\\t.quad\\t.*\\n\\t.long\\t5\\n\\t.space
FAIL: objc.dg/torture/strings/const-str-10.m  -O2  -fnext-runtime (test for excess errors)
UNRESOLVED: objc.dg/torture/strings/const-str-10.m  -O2  -fnext-runtime  scan-assembler .section __DATA, __objc_stringobj
UNRESOLVED: objc.dg/torture/strings/const-str-10.m  -O2  -fnext-runtime  scan-assembler .quad\\t_OBJC_CLASS_._NSConstantString\\n\\t.quad\\t.*\\n\\t.long\\t5\\n\\t.space
FAIL: objc.dg/torture/strings/const-str-10.m  -O3 -fomit-frame-pointer  -fnext-runtime (test for excess errors)
UNRESOLVED: objc.dg/torture/strings/const-str-10.m  -O3 -fomit-frame-pointer  -fnext-runtime  scan-assembler .section __DATA, __objc_stringobj
UNRESOLVED: objc.dg/torture/strings/const-str-10.m  -O3 -fomit-frame-pointer  -fnext-runtime  scan-assembler .quad\\t_OBJC_CLASS_._NSConstantString\\n\\t.quad\\t.*\\n\\t.long\\t5\\n\\t.space
FAIL: objc.dg/torture/strings/const-str-10.m  -O3 -g  -fnext-runtime (test for excess errors)
UNRESOLVED: objc.dg/torture/strings/const-str-10.m  -O3 -g  -fnext-runtime  scan-assembler .section __DATA, __objc_stringobj
UNRESOLVED: objc.dg/torture/strings/const-str-10.m  -O3 -g  -fnext-runtime  scan-assembler .quad\\t_OBJC_CLASS_._NSConstantString\\n\\t.quad\\t.*\\n\\t.long\\t5\\n\\t.space
FAIL: objc.dg/torture/strings/const-str-10.m  -Os  -fnext-runtime (test for excess errors)
UNRESOLVED: objc.dg/torture/strings/const-str-10.m  -Os  -fnext-runtime  scan-assembler .section __DATA, __objc_stringobj
UNRESOLVED: objc.dg/torture/strings/const-str-10.m  -Os  -fnext-runtime  scan-assembler .quad\\t_OBJC_CLASS_._NSConstantString\\n\\t.quad\\t.*\\n\\t.long\\t5\\n\\t.space
FAIL: objc.dg/torture/strings/const-str-10.m  -O2 -flto -flto-partition=none  -fnext-runtime (test for excess errors)
UNRESOLVED: objc.dg/torture/strings/const-str-10.m  -O2 -flto -flto-partition=none  -fnext-runtime  scan-assembler .section __DATA, __objc_stringobj
UNRESOLVED: objc.dg/torture/strings/const-str-10.m  -O2 -flto -flto-partition=none  -fnext-runtime  scan-assembler .quad\\t_OBJC_CLASS_._NSConstantString\\n\\t.quad\\t.*\\n\\t.long\\t5\\n\\t.space
FAIL: objc.dg/torture/strings/const-str-10.m  -O2 -flto  -fnext-runtime (test for excess errors)
UNRESOLVED: objc.dg/torture/strings/const-str-10.m  -O2 -flto  -fnext-runtime  scan-assembler .section __DATA, __objc_stringobj
UNRESOLVED: objc.dg/torture/strings/const-str-10.m  -O2 -flto  -fnext-runtime  scan-assembler .quad\\t_OBJC_CLASS_._NSConstantString\\n\\t.quad\\t.*\\n\\t.long\\t5\\n\\t.space
FAIL: objc.dg/torture/strings/const-str-11.m  -O0  -fnext-runtime (test for excess errors)
UNRESOLVED: objc.dg/torture/strings/const-str-11.m  -O0  -fnext-runtime  scan-assembler .section __DATA, __objc_stringobj
UNRESOLVED: objc.dg/torture/strings/const-str-11.m  -O0  -fnext-runtime  scan-assembler .quad\\t_OBJC_CLASS_._XStr\\n\\t.quad\\t.*\\n\\t.long\\t5\\n\\t.space
FAIL: objc.dg/torture/strings/const-str-11.m  -O1  -fnext-runtime (test for excess errors)
UNRESOLVED: objc.dg/torture/strings/const-str-11.m  -O1  -fnext-runtime  scan-assembler .section __DATA, __objc_stringobj
UNRESOLVED: objc.dg/torture/strings/const-str-11.m  -O1  -fnext-runtime  scan-assembler .quad\\t_OBJC_CLASS_._XStr\\n\\t.quad\\t.*\\n\\t.long\\t5\\n\\t.space
FAIL: objc.dg/torture/strings/const-str-11.m  -O2  -fnext-runtime (test for excess errors)
UNRESOLVED: objc.dg/torture/strings/const-str-11.m  -O2  -fnext-runtime  scan-assembler .section __DATA, __objc_stringobj
UNRESOLVED: objc.dg/torture/strings/const-str-11.m  -O2  -fnext-runtime  scan-assembler .quad\\t_OBJC_CLASS_._XStr\\n\\t.quad\\t.*\\n\\t.long\\t5\\n\\t.space
FAIL: objc.dg/torture/strings/const-str-11.m  -O3 -fomit-frame-pointer  -fnext-runtime (test for excess errors)
UNRESOLVED: objc.dg/torture/strings/const-str-11.m  -O3 -fomit-frame-pointer  -fnext-runtime  scan-assembler .section __DATA, __objc_stringobj
UNRESOLVED: objc.dg/torture/strings/const-str-11.m  -O3 -fomit-frame-pointer  -fnext-runtime  scan-assembler .quad\\t_OBJC_CLASS_._XStr\\n\\t.quad\\t.*\\n\\t.long\\t5\\n\\t.space
FAIL: objc.dg/torture/strings/const-str-11.m  -O3 -g  -fnext-runtime (test for excess errors)
UNRESOLVED: objc.dg/torture/strings/const-str-11.m  -O3 -g  -fnext-runtime  scan-assembler .section __DATA, __objc_stringobj
UNRESOLVED: objc.dg/torture/strings/const-str-11.m  -O3 -g  -fnext-runtime  scan-assembler .quad\\t_OBJC_CLASS_._XStr\\n\\t.quad\\t.*\\n\\t.long\\t5\\n\\t.space
FAIL: objc.dg/torture/strings/const-str-11.m  -Os  -fnext-runtime (test for excess errors)
UNRESOLVED: objc.dg/torture/strings/const-str-11.m  -Os  -fnext-runtime  scan-assembler .section __DATA, __objc_stringobj
UNRESOLVED: objc.dg/torture/strings/const-str-11.m  -Os  -fnext-runtime  scan-assembler .quad\\t_OBJC_CLASS_._XStr\\n\\t.quad\\t.*\\n\\t.long\\t5\\n\\t.space
FAIL: objc.dg/torture/strings/const-str-11.m  -O2 -flto -flto-partition=none  -fnext-runtime (test for excess errors)
UNRESOLVED: objc.dg/torture/strings/const-str-11.m  -O2 -flto -flto-partition=none  -fnext-runtime  scan-assembler .section __DATA, __objc_stringobj
UNRESOLVED: objc.dg/torture/strings/const-str-11.m  -O2 -flto -flto-partition=none  -fnext-runtime  scan-assembler .quad\\t_OBJC_CLASS_._XStr\\n\\t.quad\\t.*\\n\\t.long\\t5\\n\\t.space
FAIL: objc.dg/torture/strings/const-str-11.m  -O2 -flto  -fnext-runtime (test for excess errors)
UNRESOLVED: objc.dg/torture/strings/const-str-11.m  -O2 -flto  -fnext-runtime  scan-assembler .section __DATA, __objc_stringobj
UNRESOLVED: objc.dg/torture/strings/const-str-11.m  -O2 -flto  -fnext-runtime  scan-assembler .quad\\t_OBJC_CLASS_._XStr\\n\\t.quad\\t.*\\n\\t.long\\t5\\n\\t.space
FAIL: objc.dg/torture/strings/const-str-9.m  -O0  -fnext-runtime (test for excess errors)
UNRESOLVED: objc.dg/torture/strings/const-str-9.m  -O0  -fnext-runtime  scan-assembler .section __DATA, __objc_stringobj
UNRESOLVED: objc.dg/torture/strings/const-str-9.m  -O0  -fnext-runtime  scan-assembler .quad\\t_OBJC_CLASS_._NSConstantString\\n\\t.quad\\t.*\\n\\t.long\\t5\\n\\t.space
FAIL: objc.dg/torture/strings/const-str-9.m  -O1  -fnext-runtime (test for excess errors)
UNRESOLVED: objc.dg/torture/strings/const-str-9.m  -O1  -fnext-runtime  scan-assembler .section __DATA, __objc_stringobj
UNRESOLVED: objc.dg/torture/strings/const-str-9.m  -O1  -fnext-runtime  scan-assembler .quad\\t_OBJC_CLASS_._NSConstantString\\n\\t.quad\\t.*\\n\\t.long\\t5\\n\\t.space
FAIL: objc.dg/torture/strings/const-str-9.m  -O2  -fnext-runtime (test for excess errors)
UNRESOLVED: objc.dg/torture/strings/const-str-9.m  -O2  -fnext-runtime  scan-assembler .section __DATA, __objc_stringobj
UNRESOLVED: objc.dg/torture/strings/const-str-9.m  -O2  -fnext-runtime  scan-assembler .quad\\t_OBJC_CLASS_._NSConstantString\\n\\t.quad\\t.*\\n\\t.long\\t5\\n\\t.space
FAIL: objc.dg/torture/strings/const-str-9.m  -O3 -fomit-frame-pointer  -fnext-runtime (test for excess errors)
UNRESOLVED: objc.dg/torture/strings/const-str-9.m  -O3 -fomit-frame-pointer  -fnext-runtime  scan-assembler .section __DATA, __objc_stringobj
UNRESOLVED: objc.dg/torture/strings/const-str-9.m  -O3 -fomit-frame-pointer  -fnext-runtime  scan-assembler .quad\\t_OBJC_CLASS_._NSConstantString\\n\\t.quad\\t.*\\n\\t.long\\t5\\n\\t.space
FAIL: objc.dg/torture/strings/const-str-9.m  -O3 -g  -fnext-runtime (test for excess errors)
UNRESOLVED: objc.dg/torture/strings/const-str-9.m  -O3 -g  -fnext-runtime  scan-assembler .section __DATA, __objc_stringobj
UNRESOLVED: objc.dg/torture/strings/const-str-9.m  -O3 -g  -fnext-runtime  scan-assembler .quad\\t_OBJC_CLASS_._NSConstantString\\n\\t.quad\\t.*\\n\\t.long\\t5\\n\\t.space
FAIL: objc.dg/torture/strings/const-str-9.m  -Os  -fnext-runtime (test for excess errors)
UNRESOLVED: objc.dg/torture/strings/const-str-9.m  -Os  -fnext-runtime  scan-assembler .section __DATA, __objc_stringobj
UNRESOLVED: objc.dg/torture/strings/const-str-9.m  -Os  -fnext-runtime  scan-assembler .quad\\t_OBJC_CLASS_._NSConstantString\\n\\t.quad\\t.*\\n\\t.long\\t5\\n\\t.space
FAIL: objc.dg/torture/strings/const-str-9.m  -O2 -flto -flto-partition=none  -fnext-runtime (test for excess errors)
UNRESOLVED: objc.dg/torture/strings/const-str-9.m  -O2 -flto -flto-partition=none  -fnext-runtime  scan-assembler .section __DATA, __objc_stringobj
UNRESOLVED: objc.dg/torture/strings/const-str-9.m  -O2 -flto -flto-partition=none  -fnext-runtime  scan-assembler .quad\\t_OBJC_CLASS_._NSConstantString\\n\\t.quad\\t.*\\n\\t.long\\t5\\n\\t.space
FAIL: objc.dg/torture/strings/const-str-9.m  -O2 -flto  -fnext-runtime (test for excess errors)
UNRESOLVED: objc.dg/torture/strings/const-str-9.m  -O2 -flto  -fnext-runtime  scan-assembler .section __DATA, __objc_stringobj
UNRESOLVED: objc.dg/torture/strings/const-str-9.m  -O2 -flto  -fnext-runtime  scan-assembler .quad\\t_OBJC_CLASS_._NSConstantString\\n\\t.quad\\t.*\\n\\t.long\\t5\\n\\t.space
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		5944
# of unexpected failures	48
# of expected failures		14
# of unresolved testcases	59
# of unsupported tests		91

		=== objc Summary ===

# of expected passes		12029
# of unexpected failures	60
# of expected failures		20
# of unresolved testcases	61
# of unsupported tests		176
/sw/src/fink.build/gcc48-4.8.0-1000/darwin_objdir/gcc/xgcc  version 4.8.0 20121228 (experimental) (GCC) 

		=== boehm-gc tests ===


Running target unix/-m32

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

# of expected passes		12
# of unsupported tests		1

Running target unix/-m64

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

# of expected passes		12
# of unsupported tests		1

		=== boehm-gc Summary ===

# of expected passes		24
# of unsupported tests		2
		=== libatomic tests ===


Running target unix/-m32

		=== libatomic Summary for unix/-m32 ===

# of expected passes		44
# of unsupported tests		5

Running target unix/-m64

		=== libatomic Summary for unix/-m64 ===

# of expected passes		54

		=== libatomic Summary ===

# of expected passes		98
# of unsupported tests		5
		=== libffi tests ===


Running target unix/-m32

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

# of expected passes		1819
# of unsupported tests		55

Running target unix/-m64

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

# of expected passes		1819
# of unsupported tests		55

		=== libffi Summary ===

# of expected passes		3638
# of unsupported tests		110
		=== libgomp tests ===


Running target unix/-m32
FAIL: libgomp.c++/tls-init1.C  -O  (test for excess errors)
UNRESOLVED: libgomp.c++/tls-init1.C  -O  compilation failed to produce executable

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

# of expected passes		2974
# of unexpected failures	1
# of unresolved testcases	1
# of unsupported tests		3

Running target unix/-m64
FAIL: libgomp.c++/tls-init1.C  -O  (test for excess errors)
UNRESOLVED: libgomp.c++/tls-init1.C  -O  compilation failed to produce executable

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

# of expected passes		2974
# of unexpected failures	1
# of unresolved testcases	1
# of unsupported tests		3

		=== libgomp Summary ===

# of expected passes		5948
# of unexpected failures	2
# of unresolved testcases	2
# of unsupported tests		6
		=== libitm tests ===


Running target unix/-m32
FAIL: libitm.c++/eh-1.C execution test

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

# of expected passes		25
# of unexpected failures	1
# of expected failures		3
# of unsupported tests		1

Running target unix/-m64
FAIL: libitm.c++/eh-1.C execution test

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

# of expected passes		25
# of unexpected failures	1
# of expected failures		3
# of unsupported tests		1

		=== libitm Summary ===

# of expected passes		50
# of unexpected failures	2
# of expected failures		6
# of unsupported tests		2
		=== libjava tests ===


Running target unix/-m32
FAIL: PR16923.c compilation
FAIL: sourcelocation output - source compiled test
FAIL: sourcelocation -findirect-dispatch output - source compiled test
FAIL: sourcelocation -O3 output - source compiled test
FAIL: sourcelocation -O3 -findirect-dispatch output - source compiled test

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

# of expected passes		2580
# of unexpected failures	5

Running target unix/-m64
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
FAIL: sourcelocation output - source compiled test
FAIL: sourcelocation -findirect-dispatch output - source compiled test
FAIL: sourcelocation -O3 output - source compiled test
FAIL: sourcelocation -O3 -findirect-dispatch output - source compiled test

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

# of expected passes		2574
# of unexpected failures	8
# of untested testcases		4

		=== libjava Summary ===

# of expected passes		5154
# of unexpected failures	13
# of untested testcases		4
		=== libstdc++ tests ===


Running target unix/-m32

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

# of expected passes		8110
# of expected failures		43
# of unsupported tests		642

Running target unix/-m64

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

# of expected passes		8108
# of expected failures		43
# of unsupported tests		643

		=== libstdc++ Summary ===

# of expected passes		16218
# of expected failures		86
# of unsupported tests		1285

Compiler version: 4.8.0 20121228 (experimental) (GCC) 
Platform: x86_64-apple-darwin12.2.0
configure flags: --prefix=/sw --prefix=/sw/lib/gcc4.8 --mandir=/sw/share/man --infodir=/sw/lib/gcc4.8/info --enable-languages=c,c++,fortran,lto,objc,obj-c++,java --with-gmp=/sw --with-libiconv-prefix=/sw --with-isl=/sw --with-cloog=/sw --with-mpc=/sw --with-system-zlib --enable-checking=yes --x-includes=/usr/X11R6/include --x-libraries=/usr/X11R6/lib --program-suffix=-fsf-4.8



More information about the Gcc-testresults mailing list