This is the mail archive of the egcs-testresults@egcs.cygnus.com mailing list for the EGCS project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]

Results for (patched) 2.95 19990714 (prerelease) testsuite on sparc-sun-solaris2.6


Native configuration is sparc-sun-solaris2.6

		=== libio tests ===


Running target unix

		=== libio Summary ===

# of expected passes		40
		=== libstdc++ tests ===


Running target unix

		=== libstdc++ Summary ===

# of expected passes		30
		=== gcc tests ===


Running target unix
FAIL: gcc.dg/990119-1.c execution test
FAIL: gcc.dg/cast-qual-1.c discarding `const' warning (test for bogus messages, line 11)
FAIL: gcc.dg/cast-qual-1.c discarding `const' warning (test for warnings, line 17)
FAIL: gcc.dg/compare1.c (test for excess errors)

		=== gcc Summary ===

# of expected passes		8120
# of unexpected failures	4
# of expected failures		31
# of unsupported tests		25
/home/brane/eval/egcs/build/egcs/gcc/xgcc version 2.95 19990714 (prerelease)

		=== g++ tests ===


Running target unix
FAIL: g++.dg/special/conpr-1.C execution test
FAIL: g++.dg/special/conpr-2.C execution test
FAIL: g++.dg/special/conpr-3.C execution test
FAIL: g++.dg/special/conpr-3.C execution test
XPASS: g++.pt/instantiate6.C (test for excess errors)

		=== g++ Summary ===

# of expected passes		5172
# of unexpected failures	4
# of unexpected successes	1
# of expected failures		79
# of untested testcases		10
/home/brane/eval/egcs/build/egcs/gcc/testsuite/../xgcc version 2.95 19990714 (prerelease)

		=== g77 tests ===


Running target unix

		=== g77 Summary ===

# of expected passes		602
		=== objc tests ===


Running target unix
FAIL: objc/execute/bf-1.m compilation,  -O 
FAIL: objc/execute/bf-10.m compilation,  -O 
FAIL: objc/execute/bf-11.m compilation,  -O 
FAIL: objc/execute/bf-12.m compilation,  -O 
FAIL: objc/execute/bf-13.m compilation,  -O 
FAIL: objc/execute/bf-14.m compilation,  -O 
FAIL: objc/execute/bf-15.m compilation,  -O 
FAIL: objc/execute/bf-16.m compilation,  -O 
FAIL: objc/execute/bf-17.m compilation,  -O 
FAIL: objc/execute/bf-18.m compilation,  -O 
FAIL: objc/execute/bf-19.m compilation,  -O 
FAIL: objc/execute/bf-2.m compilation,  -O 
FAIL: objc/execute/bf-3.m compilation,  -O 
FAIL: objc/execute/bf-4.m compilation,  -O 
FAIL: objc/execute/bf-5.m compilation,  -O 
FAIL: objc/execute/bf-6.m compilation,  -O 
FAIL: objc/execute/bf-7.m compilation,  -O 
FAIL: objc/execute/bf-8.m compilation,  -O 
FAIL: objc/execute/bf-9.m compilation,  -O 

		=== objc Summary ===

# of unexpected failures	19
# of untested testcases		19
/home/brane/eval/egcs/build/egcs/gcc/xgcc version 2.95 19990714 (prerelease)


Compiler version: 2.95 19990714 (prerelease) 
Platform: sparc-sun-solaris2.6
configure flags: --with-gcc-version-trigger=/home/brane/eval/egcs/src/egcs/gcc/version.c --host=sparc-sun-solaris2.6 --prefix=/home/brane/eval/egcs/inst --norecursion



                === Notes ===

The following patch was applied to gcc/fix-header.c to avoid
spurious warnings on rs6000-ibm-aix4.1.4.0:


1999-07-13  Branko Cibej  <branko.cibej@hermes.si>

        * gcc/fix-header.c (NONE, CONTINUED): Use pointer-to-char
        instead of const array to avoid "optimisations".

Index: gcc/fix-header.c
===================================================================
RCS file: /cvs/egcs/egcs/gcc/fix-header.c,v
retrieving revision 1.27
diff -u -p -r1.27 fix-header.c
--- fix-header.c        1999/04/21 11:58:10     1.27
+++ fix-header.c        1999/07/13 18:50:29
@@ -206,10 +206,12 @@ struct std_include_entry {
   namelist names;
 };

-const char NONE[] = "";  /* The empty namelist.  */
+char NONE_C = '\0';      /* The empty namelist.  */
+#define NONE (&NONE_C)

 /* Special name to indicate a continuation line in std_include_table.  */
-const char CONTINUED[] = "";
+char CONTINUED_C = '\0';
+#define CONTINUED (&CONTINUED_C)

 struct std_include_entry *include_entry;


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]