------------------------------------------------
C++ Working Group - Run II Committe
Fermilab at Work - Fermilab Home - Telephone/email - Search - Help
------------------------------------------------

Test output for IRIX SGI


Test DEFECT/OLD_STL_HEADERS

Checking that the following compiles fail:
CC -n32 -c ftest1.cc
"ftest1.cc", line 4: warning(3322): omission of explicit type is nonstandard
          ("int" assumed)
  typedef vector v;
          ^

"ftest1.cc", line 4: error(1065): expected a ";"
  typedef vector v;
                ^

"ftest1.cc", line 7: error(1020): identifier "stack" is undefined
     stack s;
     ^

"ftest1.cc", line 7: error(1020): identifier "v" is undefined
     stack s;
           ^

"ftest1.cc", line 7: error(1020): identifier "s" is undefined
     stack s;
              ^

4 errors detected in the compilation of "ftest1.cc".
Checking that the following compiles succeed:
CC -n32 -c atest1.cc
CC -n32 -o atest atest1.o -lm
ld32: WARNING 84: /usr/lib32/mips3/libm.so is not used for resolving any symbol.
Checking that executable succeeds:
Checking the executable's output:
Test DEFECT/OLD_STL_HEADERS Positive

Test DEFECT/OLD_STDC_HEADERS

Checking that the following compiles fail:
CC -n32 -DDEFECT_OLD_STL_HEADERS -c ftest1.cc
"ftest1.cc", line 1: error(1005): could not open source file "cstdio"
  #include 
                   ^

1 catastrophic error detected in the compilation of "ftest1.cc".
Compilation terminated.
Checking that the following compiles succeed:
CC -n32 -DDEFECT_OLD_STL_HEADERS -c atest1.cc
CC -n32 -o atest atest1.o -lm
ld32: WARNING 84: /usr/lib32/mips3/libm.so is not used for resolving any symbol.
Checking that executable succeeds:
Checking the executable's output:
Test DEFECT/OLD_STDC_HEADERS Positive

Test DEFECT/OLD_IOSTREAM_HEADERS

Checking that the following compiles fail:
CC -n32 -DDEFECT_OLD_STL_HEADERS -DDEFECT_OLD_STDC_HEADERS -c ftest1.cc
"ftest1.cc", line 2: error(1005): could not open source file "iostream"
  #include 
                     ^

1 catastrophic error detected in the compilation of "ftest1.cc".
Compilation terminated.
Checking that the following compiles succeed:
CC -n32 -DDEFECT_OLD_STL_HEADERS -DDEFECT_OLD_STDC_HEADERS -c atest1.cc
CC -n32 -o atest atest1.o -lm
ld32: WARNING 84: /usr/lib32/mips3/libm.so is not used for resolving any symbol.
Checking that executable succeeds:
Checking the executable's output:
Test DEFECT/OLD_IOSTREAM_HEADERS Positive

Test DEFECT/OLD_STRINGSTREAM

Checking that the following compiles fail:
CC -n32 -DDEFECT_OLD_STL_HEADERS -DDEFECT_OLD_STDC_HEADERS -DDEFECT_OLD_IOSTREAM_HEADERS -c ftest1.cc
"ftest1.cc", line 2: error(1005): could not open source file "sstream"
  #include 
                    ^

1 catastrophic error detected in the compilation of "ftest1.cc".
Compilation terminated.
Test DEFECT/OLD_STRINGSTREAM Positive

Test DEFECT/NO_IOSFWD_HEADER

Checking that the following compiles fail:
CC -n32 -DDEFECT_OLD_STL_HEADERS -DDEFECT_OLD_STDC_HEADERS -DDEFECT_OLD_IOSTREAM_HEADERS -DDEFECT_OLD_STRINGSTREAM -c ftest1.cc
"ftest1.cc", line 2: error(1005): could not open source file "iosfwd"
  #include 
                   ^

1 catastrophic error detected in the compilation of "ftest1.cc".
Compilation terminated.
Test DEFECT/NO_IOSFWD_HEADER Positive

Test DEFECT/GCC27_STRINGSTREAM_STR

Checking that the following compiles succeed:
CC -n32 -DDEFECT_OLD_STL_HEADERS -DDEFECT_OLD_STDC_HEADERS -DDEFECT_OLD_IOSTREAM_HEADERS -DDEFECT_OLD_STRINGSTREAM -DDEFECT_NO_IOSFWD_HEADER -c atest1.cc
CC -n32 -o atest atest1.o -lm
ld32: WARNING 84: /usr/lib32/mips3/libm.so is not used for resolving any symbol.
Checking that executable succeeds:
Checking the executable's output:
Test DEFECT/GCC27_STRINGSTREAM_STR Positive

Test DEFECT/NO_STDLIB_NAMESPACES

Checking that the following compiles fail:
CC -n32 -DDEFECT_OLD_STL_HEADERS -DDEFECT_OLD_STDC_HEADERS -DDEFECT_OLD_IOSTREAM_HEADERS -DDEFECT_OLD_STRINGSTREAM -DDEFECT_NO_IOSFWD_HEADER -DDEFECT_GCC27_STRINGSTREAM_STR -c ftest1.cc
"ftest1.cc", line 2: error(1005): could not open source file "iostream"
  #include 
                     ^

1 catastrophic error detected in the compilation of "ftest1.cc".
Compilation terminated.
Test DEFECT/NO_STDLIB_NAMESPACES Positive

Test DEFECT/OLD_STL_COUNT

Checking that the following compiles fail:
CC -n32 -DDEFECT_OLD_STL_HEADERS -DDEFECT_OLD_STDC_HEADERS -DDEFECT_OLD_IOSTREAM_HEADERS -DDEFECT_OLD_STRINGSTREAM -DDEFECT_NO_IOSFWD_HEADER -DDEFECT_GCC27_STRINGSTREAM_STR -DDEFECT_NO_STDLIB_NAMESPACES -c ftest1.cc
"ftest1.cc", line 14: error(1020): identifier "vector" is undefined
      vector v(10);
      ^

"ftest1.cc", line 14: error(1227): type name is not allowed
      vector v(10);
             ^

"ftest1.cc", line 14: error(1020): identifier "v" is undefined
      vector v(10);
                  ^

"ftest1.cc", line 19: error(3316): expression must be a pointer to a complete
          object type
  	v[i] = i;
  	^

"ftest1.cc", line 22: error(1020): identifier "count" is undefined
      res = count( v.begin(), v.end(), j );
            ^

"ftest1.cc", line 22: error(1567): expression must have class type
      res = count( v.begin(), v.end(), j );
                   ^

"ftest1.cc", line 22: error(1567): expression must have class type
      res = count( v.begin(), v.end(), j );
                              ^

"ftest1.cc", line 16: warning(1552): variable "res" was set but never used
      int res;
          ^

7 errors detected in the compilation of "ftest1.cc".
Checking that the following compiles succeed:
CC -n32 -DDEFECT_OLD_STL_HEADERS -DDEFECT_OLD_STDC_HEADERS -DDEFECT_OLD_IOSTREAM_HEADERS -DDEFECT_OLD_STRINGSTREAM -DDEFECT_NO_IOSFWD_HEADER -DDEFECT_GCC27_STRINGSTREAM_STR -DDEFECT_NO_STDLIB_NAMESPACES -c atest1.cc
"atest1.cc", line 14: error(1020): identifier "vector" is undefined
      vector v(10);
      ^

"atest1.cc", line 14: error(1227): type name is not allowed
      vector v(10);
             ^

"atest1.cc", line 14: error(1020): identifier "v" is undefined
      vector v(10);
                  ^

"atest1.cc", line 19: error(3316): expression must be a pointer to a complete
          object type
  	v[i] = i;
  	^

"atest1.cc", line 22: error(1020): identifier "count" is undefined
      count( v.begin(), v.end(), j, res );
      ^

"atest1.cc", line 22: error(1567): expression must have class type
      count( v.begin(), v.end(), j, res );
             ^

"atest1.cc", line 22: error(1567): expression must have class type
      count( v.begin(), v.end(), j, res );
                        ^

"atest1.cc", line 22: warning(1551): variable "res" is used before its value
          is set
      count( v.begin(), v.end(), j, res );
                                    ^

7 errors detected in the compilation of "atest1.cc".
CC -n32 -o atest *.o -lm
ld32: FATAL 9: I/O error (*.o): No such file or directory
Checking that executable succeeds:
Checking the executable's output:
Test DEFECT/OLD_STL_COUNT Negative.

Test DEFECT/SGICC_STRING_HEADER

Checking that the following compiles fail:
CC -n32 -DDEFECT_OLD_STL_HEADERS -DDEFECT_OLD_STDC_HEADERS -DDEFECT_OLD_IOSTREAM_HEADERS -DDEFECT_OLD_STRINGSTREAM -DDEFECT_NO_IOSFWD_HEADER -DDEFECT_GCC27_STRINGSTREAM_STR -DDEFECT_NO_STDLIB_NAMESPACES -c ftest1.cc
Checking that the following compiles succeed:
CC -n32 -DDEFECT_OLD_STL_HEADERS -DDEFECT_OLD_STDC_HEADERS -DDEFECT_OLD_IOSTREAM_HEADERS -DDEFECT_OLD_STRINGSTREAM -DDEFECT_NO_IOSFWD_HEADER -DDEFECT_GCC27_STRINGSTREAM_STR -DDEFECT_NO_STDLIB_NAMESPACES -c atest1.cc
CC -n32 -o atest atest1.o -lm
ld32: WARNING 84: /usr/lib32/mips3/libm.so is not used for resolving any symbol.
Checking that executable succeeds:
Checking the executable's output:
Test DEFECT/SGICC_STRING_HEADER Negative.

Test Tests/bool

Checking that the following compiles succeed:
CC -n32 -DDEFECT_OLD_STL_HEADERS -DDEFECT_OLD_STDC_HEADERS -DDEFECT_OLD_IOSTREAM_HEADERS -DDEFECT_OLD_STRINGSTREAM -DDEFECT_NO_IOSFWD_HEADER -DDEFECT_GCC27_STRINGSTREAM_STR -DDEFECT_NO_STDLIB_NAMESPACES -c atest1.cc
CC -n32 -o atest atest1.o -lm
ld32: WARNING 84: /usr/lib32/mips3/libm.so is not used for resolving any symbol.
Checking that executable succeeds:
Checking the executable's output:
Test Tests/bool Positive

Test Tests/cast1

Checking that the following compiles succeed:
CC -n32 -DDEFECT_OLD_STL_HEADERS -DDEFECT_OLD_STDC_HEADERS -DDEFECT_OLD_IOSTREAM_HEADERS -DDEFECT_OLD_STRINGSTREAM -DDEFECT_NO_IOSFWD_HEADER -DDEFECT_GCC27_STRINGSTREAM_STR -DDEFECT_NO_STDLIB_NAMESPACES -c atest1.cc
CC -n32 -o atest atest1.o -lm
ld32: WARNING 84: /usr/lib32/mips3/libm.so is not used for resolving any symbol.
Checking that executable succeeds:
Checking the executable's output:
Test Tests/cast1 Positive

Test Tests/cast2

Checking that the following compiles succeed:
CC -n32 -DDEFECT_OLD_STL_HEADERS -DDEFECT_OLD_STDC_HEADERS -DDEFECT_OLD_IOSTREAM_HEADERS -DDEFECT_OLD_STRINGSTREAM -DDEFECT_NO_IOSFWD_HEADER -DDEFECT_GCC27_STRINGSTREAM_STR -DDEFECT_NO_STDLIB_NAMESPACES -c atest1.cc
CC -n32 -o atest atest1.o -lm
ld32: WARNING 84: /usr/lib32/mips3/libm.so is not used for resolving any symbol.
Checking that executable succeeds:
Checking the executable's output:
Test Tests/cast2 Positive

Test Tests/cast3

Checking that the following compiles succeed:
CC -n32 -DDEFECT_OLD_STL_HEADERS -DDEFECT_OLD_STDC_HEADERS -DDEFECT_OLD_IOSTREAM_HEADERS -DDEFECT_OLD_STRINGSTREAM -DDEFECT_NO_IOSFWD_HEADER -DDEFECT_GCC27_STRINGSTREAM_STR -DDEFECT_NO_STDLIB_NAMESPACES -c atest1.cc
CC -n32 -o atest atest1.o -lm
ld32: WARNING 84: /usr/lib32/mips3/libm.so is not used for resolving any symbol.
Checking that executable succeeds:
Checking the executable's output:
Test Tests/cast3 Positive

Test Tests/except1

Checking that the following compiles succeed:
CC -n32 -DDEFECT_OLD_STL_HEADERS -DDEFECT_OLD_STDC_HEADERS -DDEFECT_OLD_IOSTREAM_HEADERS -DDEFECT_OLD_STRINGSTREAM -DDEFECT_NO_IOSFWD_HEADER -DDEFECT_GCC27_STRINGSTREAM_STR -DDEFECT_NO_STDLIB_NAMESPACES -c -LANG:exceptions=on atest1.cc
"atest1.cc", line 16: warning(1110): statement is unreachable
      return;
      ^

CC -n32 -o atest atest1.o -lm
ld32: WARNING 84: /usr/lib32/mips3/libm.so is not used for resolving any symbol.
Checking that executable succeeds:
Checking the executable's output:
Test Tests/except1 Positive

Test Tests/except2

Checking that the following compiles succeed:
CC -n32 -DDEFECT_OLD_STL_HEADERS -DDEFECT_OLD_STDC_HEADERS -DDEFECT_OLD_IOSTREAM_HEADERS -DDEFECT_OLD_STRINGSTREAM -DDEFECT_NO_IOSFWD_HEADER -DDEFECT_GCC27_STRINGSTREAM_STR -DDEFECT_NO_STDLIB_NAMESPACES -c -LANG:exceptions=on atest1.cc
"atest1.cc", line 35: warning(1110): statement is unreachable
      return;
      ^

CC -n32 -o atest atest1.o -lm
ld32: WARNING 84: /usr/lib32/mips3/libm.so is not used for resolving any symbol.
Checking that executable succeeds:
Checking the executable's output:
Test Tests/except2 Positive

Test Tests/hello

Checking that the following compiles succeed:
CC -n32 -DDEFECT_OLD_STL_HEADERS -DDEFECT_OLD_STDC_HEADERS -DDEFECT_OLD_IOSTREAM_HEADERS -DDEFECT_OLD_STRINGSTREAM -DDEFECT_NO_IOSFWD_HEADER -DDEFECT_GCC27_STRINGSTREAM_STR -DDEFECT_NO_STDLIB_NAMESPACES -c atest1.cc
CC -n32 -o atest atest1.o -lm
ld32: WARNING 84: /usr/lib32/mips3/libm.so is not used for resolving any symbol.
Checking that executable succeeds:
Checking the executable's output:
Test Tests/hello Positive

Test Tests/mutable

Checking that the following compiles succeed:
CC -n32 -DDEFECT_OLD_STL_HEADERS -DDEFECT_OLD_STDC_HEADERS -DDEFECT_OLD_IOSTREAM_HEADERS -DDEFECT_OLD_STRINGSTREAM -DDEFECT_NO_IOSFWD_HEADER -DDEFECT_GCC27_STRINGSTREAM_STR -DDEFECT_NO_STDLIB_NAMESPACES -c atest1.cc
CC -n32 -o atest atest1.o -lm
ld32: WARNING 84: /usr/lib32/mips3/libm.so is not used for resolving any symbol.
Checking that executable succeeds:
Checking the executable's output:
Test Tests/mutable Positive

Test Tests/ns1

Checking that the following compiles succeed:
CC -n32 -DDEFECT_OLD_STL_HEADERS -DDEFECT_OLD_STDC_HEADERS -DDEFECT_OLD_IOSTREAM_HEADERS -DDEFECT_OLD_STRINGSTREAM -DDEFECT_NO_IOSFWD_HEADER -DDEFECT_GCC27_STRINGSTREAM_STR -DDEFECT_NO_STDLIB_NAMESPACES -c atest1.cc
CC -n32 -o atest atest1.o -lm
ld32: WARNING 84: /usr/lib32/mips3/libm.so is not used for resolving any symbol.
Checking that executable succeeds:
Checking the executable's output:
Test Tests/ns1 Positive

Test Tests/ns2

Checking that the following compiles succeed:
CC -n32 -DDEFECT_OLD_STL_HEADERS -DDEFECT_OLD_STDC_HEADERS -DDEFECT_OLD_IOSTREAM_HEADERS -DDEFECT_OLD_STRINGSTREAM -DDEFECT_NO_IOSFWD_HEADER -DDEFECT_GCC27_STRINGSTREAM_STR -DDEFECT_NO_STDLIB_NAMESPACES -c atest1.cc
CC -n32 -o atest atest1.o -lm
ld32: WARNING 84: /usr/lib32/mips3/libm.so is not used for resolving any symbol.
Checking that executable succeeds:
Checking the executable's output:
Test Tests/ns2 Positive

Test Tests/ns3

Checking that the following compiles succeed:
CC -n32 -DDEFECT_OLD_STL_HEADERS -DDEFECT_OLD_STDC_HEADERS -DDEFECT_OLD_IOSTREAM_HEADERS -DDEFECT_OLD_STRINGSTREAM -DDEFECT_NO_IOSFWD_HEADER -DDEFECT_GCC27_STRINGSTREAM_STR -DDEFECT_NO_STDLIB_NAMESPACES -c atest1.cc
CC -n32 -o atest atest1.o -lm
ld32: WARNING 84: /usr/lib32/mips3/libm.so is not used for resolving any symbol.
Checking that executable succeeds:
Checking the executable's output:
Test Tests/ns3 Positive

Test Tests/rtti2

Checking that the following compiles succeed:
CC -n32 -DDEFECT_OLD_STL_HEADERS -DDEFECT_OLD_STDC_HEADERS -DDEFECT_OLD_IOSTREAM_HEADERS -DDEFECT_OLD_STRINGSTREAM -DDEFECT_NO_IOSFWD_HEADER -DDEFECT_GCC27_STRINGSTREAM_STR -DDEFECT_NO_STDLIB_NAMESPACES -c atest1.cc
CC -n32 -o atest atest1.o -lm
ld32: WARNING 84: /usr/lib32/mips3/libm.so is not used for resolving any symbol.
Checking that executable succeeds:
Checking the executable's output:
Test Tests/rtti2 Positive

Test Tests/template1

Checking that the following compiles succeed:
CC -n32 -DDEFECT_OLD_STL_HEADERS -DDEFECT_OLD_STDC_HEADERS -DDEFECT_OLD_IOSTREAM_HEADERS -DDEFECT_OLD_STRINGSTREAM -DDEFECT_NO_IOSFWD_HEADER -DDEFECT_GCC27_STRINGSTREAM_STR -DDEFECT_NO_STDLIB_NAMESPACES -c atest1.cc
CC -n32 -o atest atest1.o -lm
ld32: WARNING 84: /usr/lib32/mips3/libm.so is not used for resolving any symbol.
Checking that executable succeeds:
Checking the executable's output:
Test Tests/template1 Positive

Test Tests/template2

Checking that the following compiles succeed:
CC -n32 -DDEFECT_OLD_STL_HEADERS -DDEFECT_OLD_STDC_HEADERS -DDEFECT_OLD_IOSTREAM_HEADERS -DDEFECT_OLD_STRINGSTREAM -DDEFECT_NO_IOSFWD_HEADER -DDEFECT_GCC27_STRINGSTREAM_STR -DDEFECT_NO_STDLIB_NAMESPACES -c atest1.cc
CC -n32 -o atest atest1.o -lm
ld32: WARNING 84: /usr/lib32/mips3/libm.so is not used for resolving any symbol.
Checking that executable succeeds:
Checking the executable's output:
Test Tests/template2 Positive

Test BZ/BOOL

Checking that the following compiles succeed:
CC -n32 -DDEFECT_OLD_STL_HEADERS -DDEFECT_OLD_STDC_HEADERS -DDEFECT_OLD_IOSTREAM_HEADERS -DDEFECT_OLD_STRINGSTREAM -DDEFECT_NO_IOSFWD_HEADER -DDEFECT_GCC27_STRINGSTREAM_STR -DDEFECT_NO_STDLIB_NAMESPACES -c atest1.cc
CC -n32 -o atest atest1.o -lm
ld32: WARNING 84: /usr/lib32/mips3/libm.so is not used for resolving any symbol.
Checking that executable succeeds:
Checking the executable's output:
Test BZ/BOOL Positive

Test BZ/CONST_CAST

Checking that the following compiles succeed:
CC -n32 -DDEFECT_OLD_STL_HEADERS -DDEFECT_OLD_STDC_HEADERS -DDEFECT_OLD_IOSTREAM_HEADERS -DDEFECT_OLD_STRINGSTREAM -DDEFECT_NO_IOSFWD_HEADER -DDEFECT_GCC27_STRINGSTREAM_STR -DDEFECT_NO_STDLIB_NAMESPACES -c atest1.cc
CC -n32 -o atest atest1.o -lm
ld32: WARNING 84: /usr/lib32/mips3/libm.so is not used for resolving any symbol.
Checking that executable succeeds:
Checking the executable's output:
Test BZ/CONST_CAST Positive

Test BZ/DEFAULT_TEMPLATE_PARAMETERS

Checking that the following compiles succeed:
CC -n32 -DDEFECT_OLD_STL_HEADERS -DDEFECT_OLD_STDC_HEADERS -DDEFECT_OLD_IOSTREAM_HEADERS -DDEFECT_OLD_STRINGSTREAM -DDEFECT_NO_IOSFWD_HEADER -DDEFECT_GCC27_STRINGSTREAM_STR -DDEFECT_NO_STDLIB_NAMESPACES -c atest1.cc
CC -n32 -o atest atest1.o -lm
ld32: WARNING 84: /usr/lib32/mips3/libm.so is not used for resolving any symbol.
Checking that executable succeeds:
Checking the executable's output:
Test BZ/DEFAULT_TEMPLATE_PARAMETERS Positive

Test BZ/DYNAMIC_CAST

Checking that the following compiles succeed:
CC -n32 -DDEFECT_OLD_STL_HEADERS -DDEFECT_OLD_STDC_HEADERS -DDEFECT_OLD_IOSTREAM_HEADERS -DDEFECT_OLD_STRINGSTREAM -DDEFECT_NO_IOSFWD_HEADER -DDEFECT_GCC27_STRINGSTREAM_STR -DDEFECT_NO_STDLIB_NAMESPACES -c atest1.cc
CC -n32 -o atest atest1.o -lm
ld32: WARNING 84: /usr/lib32/mips3/libm.so is not used for resolving any symbol.
Checking that executable succeeds:
Checking the executable's output:
Test BZ/DYNAMIC_CAST Positive

Test BZ/ENUM_COMPUTATIONS

Checking that the following compiles succeed:
CC -n32 -DDEFECT_OLD_STL_HEADERS -DDEFECT_OLD_STDC_HEADERS -DDEFECT_OLD_IOSTREAM_HEADERS -DDEFECT_OLD_STRINGSTREAM -DDEFECT_NO_IOSFWD_HEADER -DDEFECT_GCC27_STRINGSTREAM_STR -DDEFECT_NO_STDLIB_NAMESPACES -c atest1.cc
"atest1.cc", line 13: error(1018): expected a ")"
      enum { a = (T1::a > T2::a) ? T1::a : T2::b,
                        ^

"atest1.cc", line 13: error(1029): expected an expression
      enum { a = (T1::a > T2::a) ? T1::a : T2::b,
                                 ^

"atest1.cc", line 13: error(1067): expected a "}"
      enum { a = (T1::a > T2::a) ? T1::a : T2::b,
                                         ^

"atest1.cc", line 13: warning(1202): bit field cannot contain all values of
          the enumerated type
      enum { a = (T1::a > T2::a) ? T1::a : T2::b,
                                           ^

"atest1.cc", line 14: warning(1356): nonstandard member constant declaration
             b = T1::b + T2::b,
             ^

"atest1.cc", line 14: error(3314): expression must have arithmetic, enum, or
          pointer type
             b = T1::b + T2::b,
                 ^

"atest1.cc", line 15: warning(1356): nonstandard member constant declaration
             c = (T1::c * T2::c + T2::a + T1::a)
             ^

"atest1.cc", line 15: error(1018): expected a ")"
             c = (T1::c * T2::c + T2::a + T1::a)
                          ^

"atest1.cc", line 16: error(1029): expected an expression
      };
      ^

"atest1.cc", line 16: error(3314): expression must have arithmetic, enum, or
          pointer type
      };
      ^

"atest1.cc", line 16: warning(1065): expected a ";"
      };
      ^

7 errors detected in the compilation of "atest1.cc".
CC -n32 -o atest *.o -lm
ld32: FATAL 9: I/O error (*.o): No such file or directory
Checking that executable succeeds:
Checking the executable's output:
Test BZ/ENUM_COMPUTATIONS Negative.

Test BZ/EXCEPTIONS

Checking that the following compiles succeed:
CC -n32 -DDEFECT_OLD_STL_HEADERS -DDEFECT_OLD_STDC_HEADERS -DDEFECT_OLD_IOSTREAM_HEADERS -DDEFECT_OLD_STRINGSTREAM -DDEFECT_NO_IOSFWD_HEADER -DDEFECT_GCC27_STRINGSTREAM_STR -DDEFECT_NO_STDLIB_NAMESPACES -c -LANG:exceptions=on atest1.cc
CC -n32 -o atest atest1.o -lm
ld32: WARNING 84: /usr/lib32/mips3/libm.so is not used for resolving any symbol.
Checking that executable succeeds:
Checking the executable's output:
Test BZ/EXCEPTIONS Positive

Test BZ/EXPLICIT

Checking that the following compiles succeed:
CC -n32 -DDEFECT_OLD_STL_HEADERS -DDEFECT_OLD_STDC_HEADERS -DDEFECT_OLD_IOSTREAM_HEADERS -DDEFECT_OLD_STRINGSTREAM -DDEFECT_NO_IOSFWD_HEADER -DDEFECT_GCC27_STRINGSTREAM_STR -DDEFECT_NO_STDLIB_NAMESPACES -c atest1.cc
CC -n32 -o atest atest1.o -lm
ld32: WARNING 84: /usr/lib32/mips3/libm.so is not used for resolving any symbol.
Checking that executable succeeds:
Checking the executable's output:
Test BZ/EXPLICIT Positive

Test BZ/EXPLICIT_TEMPLATE_FUNCTION_QUALIFICATION

Checking that the following compiles succeed:
CC -n32 -DDEFECT_OLD_STL_HEADERS -DDEFECT_OLD_STDC_HEADERS -DDEFECT_OLD_IOSTREAM_HEADERS -DDEFECT_OLD_STRINGSTREAM -DDEFECT_NO_IOSFWD_HEADER -DDEFECT_GCC27_STRINGSTREAM_STR -DDEFECT_NO_STDLIB_NAMESPACES -c atest1.cc
"atest1.cc", line 11: error(1424): template parameter "X" is not used in
          declaring the parameter types of function template "to"
  template
                 ^

"atest1.cc", line 20: error(1227): type name is not allowed
      Vector y = to(x);
                            ^

"atest1.cc", line 20: error(1273): cannot determine which instance of function
          template "to" is intended
      Vector y = to(x);
                         ^

3 errors detected in the compilation of "atest1.cc".
CC -n32 -o atest *.o -lm
ld32: FATAL 9: I/O error (*.o): No such file or directory
Checking that executable succeeds:
Checking the executable's output:
Test BZ/EXPLICIT_TEMPLATE_FUNCTION_QUALIFICATION Negative.

Test BZ/FULL_SPECIALIZATION_SYNTAX

Checking that the following compiles succeed:
CC -n32 -DDEFECT_OLD_STL_HEADERS -DDEFECT_OLD_STDC_HEADERS -DDEFECT_OLD_IOSTREAM_HEADERS -DDEFECT_OLD_STRINGSTREAM -DDEFECT_NO_IOSFWD_HEADER -DDEFECT_GCC27_STRINGSTREAM_STR -DDEFECT_NO_STDLIB_NAMESPACES -c atest1.cc
CC -n32 -o atest atest1.o -lm
ld32: WARNING 84: /usr/lib32/mips3/libm.so is not used for resolving any symbol.
Checking that executable succeeds:
Checking the executable's output:
Test BZ/FULL_SPECIALIZATION_SYNTAX Positive

Test BZ/FUNCTION_NONTYPE_PARAMETERS

Checking that the following compiles succeed:
CC -n32 -DDEFECT_OLD_STL_HEADERS -DDEFECT_OLD_STDC_HEADERS -DDEFECT_OLD_IOSTREAM_HEADERS -DDEFECT_OLD_STRINGSTREAM -DDEFECT_NO_IOSFWD_HEADER -DDEFECT_GCC27_STRINGSTREAM_STR -DDEFECT_NO_STDLIB_NAMESPACES -c atest1.cc
CC -n32 -o atest atest1.o -lm
ld32: WARNING 84: /usr/lib32/mips3/libm.so is not used for resolving any symbol.
Checking that executable succeeds:
Checking the executable's output:
Test BZ/FUNCTION_NONTYPE_PARAMETERS Positive

Test BZ/HAVE_COMPLEX

Checking that the following compiles succeed:
CC -n32 -DDEFECT_OLD_STL_HEADERS -DDEFECT_OLD_STDC_HEADERS -DDEFECT_OLD_IOSTREAM_HEADERS -DDEFECT_OLD_STRINGSTREAM -DDEFECT_NO_IOSFWD_HEADER -DDEFECT_GCC27_STRINGSTREAM_STR -DDEFECT_NO_STDLIB_NAMESPACES -c atest1.cc
CC -n32 -o atest atest1.o -lm
ld32: WARNING 84: /usr/lib32/mips3/libm.so is not used for resolving any symbol.
Checking that executable succeeds:
Checking the executable's output:
Test BZ/HAVE_COMPLEX Positive

Test BZ/HAVE_COMPLEX_MATH

Checking that the following compiles succeed:
CC -n32 -DDEFECT_OLD_STL_HEADERS -DDEFECT_OLD_STDC_HEADERS -DDEFECT_OLD_IOSTREAM_HEADERS -DDEFECT_OLD_STRINGSTREAM -DDEFECT_NO_IOSFWD_HEADER -DDEFECT_GCC27_STRINGSTREAM_STR -DDEFECT_NO_STDLIB_NAMESPACES -c atest1.cc
"atest1.cc", line 13: error(1387): no suitable conversion function from
          "std::complex" to "double" exists
      acos(x);
           ^

"atest1.cc", line 14: error(1387): no suitable conversion function from
          "std::complex" to "double" exists
      asin(x);
           ^

"atest1.cc", line 15: error(1387): no suitable conversion function from
          "std::complex" to "double" exists
      atan(x);
           ^

"atest1.cc", line 16: error(1387): no suitable conversion function from
          "std::complex" to "double" exists
      atan2(x,y);
            ^

"atest1.cc", line 16: error(1387): no suitable conversion function from
          "std::complex" to "double" exists
      atan2(x,y);
              ^

"atest1.cc", line 17: error(1387): no suitable conversion function from
          "std::complex" to "double" exists
      atan2(x, double(3.0));
            ^

"atest1.cc", line 18: error(1387): no suitable conversion function from
          "std::complex" to "double" exists
      atan2(double(3.0), x);
                         ^

7 errors detected in the compilation of "atest1.cc".
CC -n32 -o atest *.o -lm
ld32: FATAL 9: I/O error (*.o): No such file or directory
Checking that executable succeeds:
Checking the executable's output:
Test BZ/HAVE_COMPLEX_MATH Negative.

Test BZ/HAVE_IEEE_MATH

Checking that the following compiles succeed:
CC -n32 -DDEFECT_OLD_STL_HEADERS -DDEFECT_OLD_STDC_HEADERS -DDEFECT_OLD_IOSTREAM_HEADERS -DDEFECT_OLD_STRINGSTREAM -DDEFECT_NO_IOSFWD_HEADER -DDEFECT_GCC27_STRINGSTREAM_STR -DDEFECT_NO_STDLIB_NAMESPACES -c atest1.cc
"atest1.cc", line 26: error(1020): identifier "finite" is undefined
      finite(x);
      ^

"atest1.cc", line 34: error(1020): identifier "trunc" is undefined
      trunc(x);
      ^

2 errors detected in the compilation of "atest1.cc".
CC -n32 -o atest *.o -lm
ld32: FATAL 9: I/O error (*.o): No such file or directory
Checking that executable succeeds:
Checking the executable's output:
Test BZ/HAVE_IEEE_MATH Negative.

Test BZ/HAVE_NUMERIC_LIMITS

Checking that the following compiles succeed:
CC -n32 -DDEFECT_OLD_STL_HEADERS -DDEFECT_OLD_STDC_HEADERS -DDEFECT_OLD_IOSTREAM_HEADERS -DDEFECT_OLD_STRINGSTREAM -DDEFECT_NO_IOSFWD_HEADER -DDEFECT_GCC27_STRINGSTREAM_STR -DDEFECT_NO_STDLIB_NAMESPACES -c atest1.cc
CC -n32 -o atest atest1.o -lm
ld32: WARNING 84: /usr/lib32/mips3/libm.so is not used for resolving any symbol.
Checking that executable succeeds:
Checking the executable's output:
Test BZ/HAVE_NUMERIC_LIMITS Positive

Test BZ/HAVE_RUSAGE

Checking that the following compiles succeed:
CC -n32 -DDEFECT_OLD_STL_HEADERS -DDEFECT_OLD_STDC_HEADERS -DDEFECT_OLD_IOSTREAM_HEADERS -DDEFECT_OLD_STRINGSTREAM -DDEFECT_NO_IOSFWD_HEADER -DDEFECT_GCC27_STRINGSTREAM_STR -DDEFECT_NO_STDLIB_NAMESPACES -c atest1.cc
CC -n32 -o atest atest1.o -lm
ld32: WARNING 84: /usr/lib32/mips3/libm.so is not used for resolving any symbol.
Checking that executable succeeds:
Checking the executable's output:
Test BZ/HAVE_RUSAGE Positive

Test BZ/HAVE_STD

Checking that the following compiles succeed:
CC -n32 -DDEFECT_OLD_STL_HEADERS -DDEFECT_OLD_STDC_HEADERS -DDEFECT_OLD_IOSTREAM_HEADERS -DDEFECT_OLD_STRINGSTREAM -DDEFECT_NO_IOSFWD_HEADER -DDEFECT_GCC27_STRINGSTREAM_STR -DDEFECT_NO_STDLIB_NAMESPACES -c atest1.cc
"atest1.cc", line 1: error(1005): could not open source file "iostream"
  #include 
                     ^

1 catastrophic error detected in the compilation of "atest1.cc".
Compilation terminated.
CC -n32 -o atest *.o -lm
ld32: FATAL 9: I/O error (*.o): No such file or directory
Checking that executable succeeds:
Checking the executable's output:
Test BZ/HAVE_STD Negative.

Test BZ/HAVE_SYSTEM_V_MATH

Checking that the following compiles succeed:
CC -n32 -DDEFECT_OLD_STL_HEADERS -DDEFECT_OLD_STDC_HEADERS -DDEFECT_OLD_IOSTREAM_HEADERS -DDEFECT_OLD_STRINGSTREAM -DDEFECT_NO_IOSFWD_HEADER -DDEFECT_GCC27_STRINGSTREAM_STR -DDEFECT_NO_STDLIB_NAMESPACES -c atest1.cc
"atest1.cc", line 20: error(1020): identifier "_class" is undefined
      _class(x);
      ^

"atest1.cc", line 22: error(1020): identifier "itrunc" is undefined
      itrunc(x);
      ^

"atest1.cc", line 23: error(1020): identifier "nearest" is undefined
      nearest(x);
      ^

"atest1.cc", line 24: error(1020): identifier "rsqrt" is undefined
      rsqrt(x);
      ^

"atest1.cc", line 25: error(1020): identifier "uitrunc" is undefined
      uitrunc(x);
      ^

5 errors detected in the compilation of "atest1.cc".
CC -n32 -o atest *.o -lm
ld32: FATAL 9: I/O error (*.o): No such file or directory
Checking that executable succeeds:
Checking the executable's output:
Test BZ/HAVE_SYSTEM_V_MATH Negative.

Test BZ/HAVE_VALARRAY

Checking that the following compiles succeed:
CC -n32 -DDEFECT_OLD_STL_HEADERS -DDEFECT_OLD_STDC_HEADERS -DDEFECT_OLD_IOSTREAM_HEADERS -DDEFECT_OLD_STRINGSTREAM -DDEFECT_NO_IOSFWD_HEADER -DDEFECT_GCC27_STRINGSTREAM_STR -DDEFECT_NO_STDLIB_NAMESPACES -c atest1.cc
"atest1.cc", line 3: error(1005): could not open source file "valarray"
  #include 
                     ^

1 catastrophic error detected in the compilation of "atest1.cc".
Compilation terminated.
CC -n32 -o atest *.o -lm
ld32: FATAL 9: I/O error (*.o): No such file or directory
Checking that executable succeeds:
Checking the executable's output:
Test BZ/HAVE_VALARRAY Negative.

Test BZ/MEMBER_CONSTANTS

Checking that the following compiles succeed:
CC -n32 -DDEFECT_OLD_STL_HEADERS -DDEFECT_OLD_STDC_HEADERS -DDEFECT_OLD_IOSTREAM_HEADERS -DDEFECT_OLD_STRINGSTREAM -DDEFECT_NO_IOSFWD_HEADER -DDEFECT_GCC27_STRINGSTREAM_STR -DDEFECT_NO_STDLIB_NAMESPACES -c atest1.cc
CC -n32 -o atest atest1.o -lm
ld32: WARNING 84: /usr/lib32/mips3/libm.so is not used for resolving any symbol.
Checking that executable succeeds:
Checking the executable's output:
Test BZ/MEMBER_CONSTANTS Positive

Test BZ/MEMBER_TEMPLATES

Checking that the following compiles succeed:
CC -n32 -DDEFECT_OLD_STL_HEADERS -DDEFECT_OLD_STDC_HEADERS -DDEFECT_OLD_IOSTREAM_HEADERS -DDEFECT_OLD_STRINGSTREAM -DDEFECT_NO_IOSFWD_HEADER -DDEFECT_GCC27_STRINGSTREAM_STR -DDEFECT_NO_STDLIB_NAMESPACES -c atest1.cc
CC -n32 -o atest atest1.o -lm
ld32: WARNING 84: /usr/lib32/mips3/libm.so is not used for resolving any symbol.
Checking that executable succeeds:
Checking the executable's output:
Test BZ/MEMBER_TEMPLATES Positive

Test BZ/MEMBER_TEMPLATES_OUTSIDE_CLASS

Checking that the following compiles succeed:
CC -n32 -DDEFECT_OLD_STL_HEADERS -DDEFECT_OLD_STDC_HEADERS -DDEFECT_OLD_IOSTREAM_HEADERS -DDEFECT_OLD_STRINGSTREAM -DDEFECT_NO_IOSFWD_HEADER -DDEFECT_GCC27_STRINGSTREAM_STR -DDEFECT_NO_STDLIB_NAMESPACES -c atest1.cc
CC -n32 -o atest atest1.o -lm
ld32: WARNING 84: /usr/lib32/mips3/libm.so is not used for resolving any symbol.
Checking that executable succeeds:
Checking the executable's output:
Test BZ/MEMBER_TEMPLATES_OUTSIDE_CLASS Positive

Test BZ/MUTABLE

Checking that the following compiles succeed:
CC -n32 -DDEFECT_OLD_STL_HEADERS -DDEFECT_OLD_STDC_HEADERS -DDEFECT_OLD_IOSTREAM_HEADERS -DDEFECT_OLD_STRINGSTREAM -DDEFECT_NO_IOSFWD_HEADER -DDEFECT_GCC27_STRINGSTREAM_STR -DDEFECT_NO_STDLIB_NAMESPACES -c atest1.cc
CC -n32 -o atest atest1.o -lm
ld32: WARNING 84: /usr/lib32/mips3/libm.so is not used for resolving any symbol.
Checking that executable succeeds:
Checking the executable's output:
Test BZ/MUTABLE Positive

Test BZ/NAMESPACES

Checking that the following compiles succeed:
CC -n32 -DDEFECT_OLD_STL_HEADERS -DDEFECT_OLD_STDC_HEADERS -DDEFECT_OLD_IOSTREAM_HEADERS -DDEFECT_OLD_STRINGSTREAM -DDEFECT_NO_IOSFWD_HEADER -DDEFECT_GCC27_STRINGSTREAM_STR -DDEFECT_NO_STDLIB_NAMESPACES -c atest1.cc
CC -n32 -o atest atest1.o -lm
ld32: WARNING 84: /usr/lib32/mips3/libm.so is not used for resolving any symbol.
Checking that executable succeeds:
Checking the executable's output:
Test BZ/NAMESPACES Positive

Test BZ/NCEG_RESTRICT

Checking that the following compiles succeed:
CC -n32 -DDEFECT_OLD_STL_HEADERS -DDEFECT_OLD_STDC_HEADERS -DDEFECT_OLD_IOSTREAM_HEADERS -DDEFECT_OLD_STRINGSTREAM -DDEFECT_NO_IOSFWD_HEADER -DDEFECT_GCC27_STRINGSTREAM_STR -DDEFECT_NO_STDLIB_NAMESPACES -c atest1.cc
"atest1.cc", line 6: error(1018): expected a ")"
  void add(int length, double * restrict a, const double * restrict b,
                                         ^

"atest1.cc", line 10: error(1020): identifier "a" is undefined
          a[i] = b[i] + c[i];
          ^

"atest1.cc", line 10: error(1020): identifier "b" is undefined
          a[i] = b[i] + c[i];
                 ^

"atest1.cc", line 10: error(1020): identifier "c" is undefined
          a[i] = b[i] + c[i];
                        ^

"atest1.cc", line 23: error(1136): too many arguments in function call
      add(10,a,b,c);
               ^

5 errors detected in the compilation of "atest1.cc".
CC -n32 -o atest *.o -lm
ld32: FATAL 9: I/O error (*.o): No such file or directory
Checking that executable succeeds:
Checking the executable's output:
Test BZ/NCEG_RESTRICT Negative.

Test BZ/OLD_FOR_SCOPING

Checking that the following compiles succeed:
CC -n32 -DDEFECT_OLD_STL_HEADERS -DDEFECT_OLD_STDC_HEADERS -DDEFECT_OLD_IOSTREAM_HEADERS -DDEFECT_OLD_STRINGSTREAM -DDEFECT_NO_IOSFWD_HEADER -DDEFECT_GCC27_STRINGSTREAM_STR -DDEFECT_NO_STDLIB_NAMESPACES -c atest1.cc
CC -n32 -o atest atest1.o -lm
ld32: WARNING 84: /usr/lib32/mips3/libm.so is not used for resolving any symbol.
Checking that executable succeeds:
Checking the executable's output:
Test BZ/OLD_FOR_SCOPING Positive

Test BZ/PARTIAL_ORDERING

Checking that the following compiles succeed:
CC -n32 -DDEFECT_OLD_STL_HEADERS -DDEFECT_OLD_STDC_HEADERS -DDEFECT_OLD_IOSTREAM_HEADERS -DDEFECT_OLD_STRINGSTREAM -DDEFECT_NO_IOSFWD_HEADER -DDEFECT_GCC27_STRINGSTREAM_STR -DDEFECT_NO_STDLIB_NAMESPACES -c atest1.cc
"atest1.cc", line 28: error(1282): more than one instance of overloaded
          function "A::operator()" matches the argument list:
            function template "A::operator()(T1, T2)"
            function template "A::operator()(I, I)"
            argument types are: (I<0>, I<1>)
      x(a,b);
      ^

1 error detected in the compilation of "atest1.cc".
CC -n32 -o atest *.o -lm
ld32: FATAL 9: I/O error (*.o): No such file or directory
Checking that executable succeeds:
Checking the executable's output:
Test BZ/PARTIAL_ORDERING Negative.

Test BZ/PARTIAL_SPECIALIZATION

Checking that the following compiles succeed:
CC -n32 -DDEFECT_OLD_STL_HEADERS -DDEFECT_OLD_STDC_HEADERS -DDEFECT_OLD_IOSTREAM_HEADERS -DDEFECT_OLD_STRINGSTREAM -DDEFECT_NO_IOSFWD_HEADER -DDEFECT_GCC27_STRINGSTREAM_STR -DDEFECT_NO_STDLIB_NAMESPACES -c atest1.cc
CC -n32 -o atest atest1.o -lm
ld32: WARNING 84: /usr/lib32/mips3/libm.so is not used for resolving any symbol.
Checking that executable succeeds:
Checking the executable's output:
Test BZ/PARTIAL_SPECIALIZATION Positive

Test BZ/REINTERPRET_CAST

Checking that the following compiles succeed:
CC -n32 -DDEFECT_OLD_STL_HEADERS -DDEFECT_OLD_STDC_HEADERS -DDEFECT_OLD_IOSTREAM_HEADERS -DDEFECT_OLD_STRINGSTREAM -DDEFECT_NO_IOSFWD_HEADER -DDEFECT_GCC27_STRINGSTREAM_STR -DDEFECT_NO_STDLIB_NAMESPACES -c atest1.cc
CC -n32 -o atest atest1.o -lm
ld32: WARNING 84: /usr/lib32/mips3/libm.so is not used for resolving any symbol.
Checking that executable succeeds:
Checking the executable's output:
Test BZ/REINTERPRET_CAST Positive

Test BZ/RTTI

Checking that the following compiles succeed:
CC -n32 -DDEFECT_OLD_STL_HEADERS -DDEFECT_OLD_STDC_HEADERS -DDEFECT_OLD_IOSTREAM_HEADERS -DDEFECT_OLD_STRINGSTREAM -DDEFECT_NO_IOSFWD_HEADER -DDEFECT_GCC27_STRINGSTREAM_STR -DDEFECT_NO_STDLIB_NAMESPACES -c atest1.cc
CC -n32 -o atest atest1.o -lm
ld32: WARNING 84: /usr/lib32/mips3/libm.so is not used for resolving any symbol.
Checking that executable succeeds:
Checking the executable's output:
Test BZ/RTTI Positive

Test BZ/STATIC_CAST

Checking that the following compiles succeed:
CC -n32 -DDEFECT_OLD_STL_HEADERS -DDEFECT_OLD_STDC_HEADERS -DDEFECT_OLD_IOSTREAM_HEADERS -DDEFECT_OLD_STRINGSTREAM -DDEFECT_NO_IOSFWD_HEADER -DDEFECT_GCC27_STRINGSTREAM_STR -DDEFECT_NO_STDLIB_NAMESPACES -c atest1.cc
CC -n32 -o atest atest1.o -lm
ld32: WARNING 84: /usr/lib32/mips3/libm.so is not used for resolving any symbol.
Checking that executable succeeds:
Checking the executable's output:
Test BZ/STATIC_CAST Positive

Test BZ/TEMPLATES

Checking that the following compiles succeed:
CC -n32 -DDEFECT_OLD_STL_HEADERS -DDEFECT_OLD_STDC_HEADERS -DDEFECT_OLD_IOSTREAM_HEADERS -DDEFECT_OLD_STRINGSTREAM -DDEFECT_NO_IOSFWD_HEADER -DDEFECT_GCC27_STRINGSTREAM_STR -DDEFECT_NO_STDLIB_NAMESPACES -c atest1.cc
CC -n32 -o atest atest1.o -lm
ld32: WARNING 84: /usr/lib32/mips3/libm.so is not used for resolving any symbol.
Checking that executable succeeds:
Checking the executable's output:
Test BZ/TEMPLATES Positive

Test BZ/TEMPLATES_AS_TEMPLATE_ARGUMENTS

Checking that the following compiles succeed:
CC -n32 -DDEFECT_OLD_STL_HEADERS -DDEFECT_OLD_STDC_HEADERS -DDEFECT_OLD_IOSTREAM_HEADERS -DDEFECT_OLD_STRINGSTREAM -DDEFECT_NO_IOSFWD_HEADER -DDEFECT_GCC27_STRINGSTREAM_STR -DDEFECT_NO_STDLIB_NAMESPACES -c atest1.cc
"atest1.cc", line 10: error(1442): "template" is not allowed
  template class T_alloc>
                    ^

"atest1.cc", line 16: error(1522): template parameter "" may not have
          a template argument list
     T_alloc alloc_; 
     ^

"atest1.cc", line 21: error(1420): argument list for class template "allocator"
          is missing
      foo x;
                  ^

"atest1.cc", line 21: warning(1174): variable "x" was declared but never
          referenced
      foo x;
                             ^

3 errors detected in the compilation of "atest1.cc".
CC -n32 -o atest *.o -lm
ld32: FATAL 9: I/O error (*.o): No such file or directory
Checking that executable succeeds:
Checking the executable's output:
Test BZ/TEMPLATES_AS_TEMPLATE_ARGUMENTS Negative.

Test BZ/TEMPLATE_KEYWORD_QUALIFIER

Checking that the following compiles succeed:
CC -n32 -DDEFECT_OLD_STL_HEADERS -DDEFECT_OLD_STDC_HEADERS -DDEFECT_OLD_IOSTREAM_HEADERS -DDEFECT_OLD_STRINGSTREAM -DDEFECT_NO_IOSFWD_HEADER -DDEFECT_GCC27_STRINGSTREAM_STR -DDEFECT_NO_STDLIB_NAMESPACES -c atest1.cc
"atest1.cc", line 7: error(1424): template parameter "T" is not used in
          declaring the parameter types of function template "Foo::convert"
      template static T convert() { return T(); }
                     ^

"atest1.cc", line 12: error(1040): expected an identifier
      double z = Foo::template convert();
                      ^

"atest1.cc", line 12: error(1065): expected a ";"
      double z = Foo::template convert();
                      ^

"atest1.cc", line 12: warning(1174): variable "z" was declared but never
          referenced
      double z = Foo::template convert();
             ^

3 errors detected in the compilation of "atest1.cc".
CC -n32 -o atest *.o -lm
ld32: FATAL 9: I/O error (*.o): No such file or directory
Checking that executable succeeds:
Checking the executable's output:
Test BZ/TEMPLATE_KEYWORD_QUALIFIER Negative.

Test BZ/TEMPLATE_QUALIFIED_BASE_CLASS

Checking that the following compiles succeed:
CC -n32 -DDEFECT_OLD_STL_HEADERS -DDEFECT_OLD_STDC_HEADERS -DDEFECT_OLD_IOSTREAM_HEADERS -DDEFECT_OLD_STRINGSTREAM -DDEFECT_NO_IOSFWD_HEADER -DDEFECT_GCC27_STRINGSTREAM_STR -DDEFECT_NO_STDLIB_NAMESPACES -c atest1.cc
CC -n32 -o atest atest1.o -lm
ld32: WARNING 84: /usr/lib32/mips3/libm.so is not used for resolving any symbol.
Checking that executable succeeds:
Checking the executable's output:
Test BZ/TEMPLATE_QUALIFIED_BASE_CLASS Positive

Test BZ/TEMPLATE_QUALIFIED_RETURN_TYPE

Checking that the following compiles succeed:
CC -n32 -DDEFECT_OLD_STL_HEADERS -DDEFECT_OLD_STDC_HEADERS -DDEFECT_OLD_IOSTREAM_HEADERS -DDEFECT_OLD_STRINGSTREAM -DDEFECT_NO_IOSFWD_HEADER -DDEFECT_GCC27_STRINGSTREAM_STR -DDEFECT_NO_STDLIB_NAMESPACES -c atest1.cc
CC -n32 -o atest atest1.o -lm
ld32: WARNING 84: /usr/lib32/mips3/libm.so is not used for resolving any symbol.
Checking that executable succeeds:
Checking the executable's output:
Test BZ/TEMPLATE_QUALIFIED_RETURN_TYPE Positive

Test BZ/TEMPLATE_SCOPED_ARGUMENT_MATCHING

Checking that the following compiles succeed:
CC -n32 -DDEFECT_OLD_STL_HEADERS -DDEFECT_OLD_STDC_HEADERS -DDEFECT_OLD_IOSTREAM_HEADERS -DDEFECT_OLD_STRINGSTREAM -DDEFECT_NO_IOSFWD_HEADER -DDEFECT_GCC27_STRINGSTREAM_STR -DDEFECT_NO_STDLIB_NAMESPACES -c atest1.cc
"atest1.cc", line 25: error(1323): no operator "+" matches these operands
            operand types are: B> + float
      z + 0.5f;     //        match +(B>, A::W)
        ^

1 error detected in the compilation of "atest1.cc".
CC -n32 -o atest *.o -lm
ld32: FATAL 9: I/O error (*.o): No such file or directory
Checking that executable succeeds:
Checking the executable's output:
Test BZ/TEMPLATE_SCOPED_ARGUMENT_MATCHING Negative.

Test BZ/TYPENAME

Checking that the following compiles succeed:
CC -n32 -DDEFECT_OLD_STL_HEADERS -DDEFECT_OLD_STDC_HEADERS -DDEFECT_OLD_IOSTREAM_HEADERS -DDEFECT_OLD_STRINGSTREAM -DDEFECT_NO_IOSFWD_HEADER -DDEFECT_GCC27_STRINGSTREAM_STR -DDEFECT_NO_STDLIB_NAMESPACES -c atest1.cc
CC -n32 -o atest atest1.o -lm
ld32: WARNING 84: /usr/lib32/mips3/libm.so is not used for resolving any symbol.
Checking that executable succeeds:
Checking the executable's output:
Test BZ/TYPENAME Positive

Test BZ/TYPE_PROMOTION

Checking that the following compiles succeed:
CC -n32 -DDEFECT_OLD_STL_HEADERS -DDEFECT_OLD_STDC_HEADERS -DDEFECT_OLD_IOSTREAM_HEADERS -DDEFECT_OLD_STRINGSTREAM -DDEFECT_NO_IOSFWD_HEADER -DDEFECT_GCC27_STRINGSTREAM_STR -DDEFECT_NO_STDLIB_NAMESPACES -c atest1.cc
CC -n32 -o atest atest1.o -lm
ld32: WARNING 84: /usr/lib32/mips3/libm.so is not used for resolving any symbol.
Checking that executable succeeds:
Checking the executable's output:
Test BZ/TYPE_PROMOTION Positive

Test BZ/USE_NUMTRAIT

Checking that the following compiles succeed:
CC -n32 -DDEFECT_OLD_STL_HEADERS -DDEFECT_OLD_STDC_HEADERS -DDEFECT_OLD_IOSTREAM_HEADERS -DDEFECT_OLD_STRINGSTREAM -DDEFECT_NO_IOSFWD_HEADER -DDEFECT_GCC27_STRINGSTREAM_STR -DDEFECT_NO_STDLIB_NAMESPACES -c atest1.cc
CC -n32 -o atest atest1.o -lm
ld32: WARNING 84: /usr/lib32/mips3/libm.so is not used for resolving any symbol.
Checking that executable succeeds:
Checking the executable's output:
Test BZ/USE_NUMTRAIT Positive