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 hppa1.1-hp-hpux10.20


Native configuration is hppa1.1-hp-hpux10.20

		=== 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.c-torture/execute/980716-1.c execution,  -O0 
FAIL: gcc.c-torture/execute/strct-stdarg-1.c execution,  -O0 
FAIL: gcc.c-torture/execute/strct-stdarg-1.c execution,  -O1 
FAIL: gcc.c-torture/execute/strct-stdarg-1.c execution,  -O2 
FAIL: gcc.c-torture/execute/strct-stdarg-1.c execution,  -O3 -fomit-frame-pointer 
FAIL: gcc.c-torture/execute/strct-stdarg-1.c execution,  -O3 -fomit-frame-pointer -funroll-loops 
FAIL: gcc.c-torture/execute/strct-stdarg-1.c execution,  -O3 -fomit-frame-pointer -funroll-all-loops -finline-functions 
FAIL: gcc.c-torture/execute/strct-stdarg-1.c execution,  -O3 -g 
FAIL: gcc.c-torture/execute/strct-stdarg-1.c execution,  -Os 
FAIL: gcc.c-torture/execute/ieee/fp-cmp-1.c execution,  -O0 
FAIL: gcc.c-torture/execute/ieee/mzero2.c execution,  -O1 
FAIL: gcc.c-torture/execute/ieee/mzero2.c execution,  -O2 
FAIL: gcc.c-torture/execute/ieee/mzero2.c execution,  -O3 -fomit-frame-pointer 
FAIL: gcc.c-torture/execute/ieee/mzero2.c execution,  -O3 -g 
FAIL: gcc.c-torture/execute/ieee/mzero2.c execution,  -Os 
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)
FAIL: gcc.dg/special/alias-1.c (test for excess errors)
FAIL: gcc.dg/special/wkali-1.c (test for excess errors)

		=== gcc Summary ===

# of expected passes		8097
# of unexpected failures	21
# of expected failures		31
# of unresolved testcases	3
# of unsupported tests		24
/home2/brane/egcs/build/egcs/gcc/xgcc version 2.95 19990714 (prerelease)

		=== g++ tests ===


Running target unix
FAIL: g++.ext/attrib5.C (test for excess errors)
XPASS: g++.mike/eh33.C (test for excess errors)
XPASS: g++.mike/eh33.C  Execution test
XPASS: g++.mike/eh50.C (test for excess errors)
XPASS: g++.mike/eh50.C  Execution test
XPASS: g++.pt/instantiate6.C (test for excess errors)
FAIL: g++.pt/static6.C (test for excess errors)

		=== g++ Summary ===

# of expected passes		5166
# of unexpected failures	2
# of unexpected successes	5
# of expected failures		82
# of untested testcases		11
/home2/brane/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

		=== objc Summary ===

# of expected passes		38
/home2/brane/egcs/build/egcs/gcc/xgcc version 2.95 19990714 (prerelease)


Compiler version: 2.95 19990714 (prerelease) 
Platform: hppa1.1-hp-hpux10.20
configure flags: --with-gcc-version-trigger=/home2/brane/egcs/src/egcs/gcc/version.c --host=hppa1.1-hp-hpux10.20 --prefix=/home2/brane/egcs/inst --with-gnu-as --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]