17_intro: Prepare testcases for new style DejaGnu framework.
authorGabriel Dos Reis <gdr@codesourcery.com>
Fri, 19 Jan 2001 02:52:27 +0000 (02:52 +0000)
committerGabriel Dos Reis <gdr@gcc.gnu.org>
Fri, 19 Jan 2001 02:52:27 +0000 (02:52 +0000)
2001-01-19  Gabriel Dos Reis  <gdr@codesourcery.com>

* testsuite/17_intro: Prepare testcases for new style DejaGnu
framework.

From-SVN: r39124

20 files changed:
libstdc++-v3/ChangeLog
libstdc++-v3/testsuite/17_intro/header_ciso646.cc
libstdc++-v3/testsuite/17_intro/header_cstdio.cc
libstdc++-v3/testsuite/17_intro/header_cstdlib.cc
libstdc++-v3/testsuite/17_intro/header_cstring.cc
libstdc++-v3/testsuite/17_intro/header_ctime.cc
libstdc++-v3/testsuite/17_intro/header_cwchar.cc
libstdc++-v3/testsuite/17_intro/header_cwctype.cc
libstdc++-v3/testsuite/17_intro/header_fstream.cc
libstdc++-v3/testsuite/17_intro/header_iomanip.cc
libstdc++-v3/testsuite/17_intro/header_ios.cc
libstdc++-v3/testsuite/17_intro/header_iosfwd.cc
libstdc++-v3/testsuite/17_intro/header_iostream.cc
libstdc++-v3/testsuite/17_intro/header_istream.cc
libstdc++-v3/testsuite/17_intro/header_ostream.cc
libstdc++-v3/testsuite/17_intro/header_sstream.cc
libstdc++-v3/testsuite/17_intro/header_streambuf.cc
libstdc++-v3/testsuite/17_intro/headers.cc
libstdc++-v3/testsuite/17_intro/headers_c++.cc
libstdc++-v3/testsuite/17_intro/headers_c.cc

index d4f567099dabad4784a240e0a251ca1106558758..570096452dd20b1d4e20e6fe64dd0ce0c26dff62 100644 (file)
@@ -1,3 +1,8 @@
+2001-01-19  Gabriel Dos Reis  <gdr@codesourcery.com>
+
+       * testsuite/17_intro: Prepare testcases for new style DejaGnu
+       framework. 
+
 2001-01-18  Gabriel Dos Reis  <gdr@codesourcery.com>
 
        * testsuite/libstdc++.tests, testsuite/lib: New directories.
index c82c076d76131893c85578531cb08cc590f9a0fb..30a8982fa398f23cf0dcb97848e436e6c16b3803 100644 (file)
@@ -20,6 +20,8 @@
 
 // 17.4.1.2 Headers, ciso646
 
+// { dg-do link }
+
 #include <ciso646>
 #include <debug_assert.h>
 
index 7fcdc5eea0fe33ad4978db9b54709ea0767d79ee..38d7cd565a3c4d287001822db19c4c0b19495b77 100644 (file)
@@ -26,7 +26,7 @@
 int main(void)
 {
   // Make sure size_t is in namespace std
-  std::size_t i = 5;
+  std::size_t i = 5;            // { dg-do compile }
   return 0;
 }
 
index 43a9648256ffe5eb241d8c58ed2f14a9ab17affa..3a4664e677949a6d5ef3bc123f4a6aae266dc06a 100644 (file)
@@ -26,7 +26,7 @@
 int main(void)
 {
   // Make sure size_t is in namespace std
-  std::size_t i = 5;
+  std::size_t i = 5;            // { dg-do compile }
   return 0;
 }
 
index f1661cd5fb999efe735a2f97a93af07dd6f878ed..02d51eae697e8583a29b8fd677baa9633f434921 100644 (file)
@@ -26,6 +26,7 @@
 int main(void)
 {
   // Make sure size_t is in namespace std
+  // { dg-do compile }
   std::size_t i = std::strlen("tibet shop/san francisco (415) 982-0326");
   return 0;
 }
index 1cc6f4e12dce5af0b81032a1df6757fceecb1b43..98f48b7e8790a94fdcffecb918d83f116226d41a 100644 (file)
@@ -26,7 +26,7 @@
 int main(void)
 {
   // Make sure size_t is in namespace std
-  std::size_t i = 5;
+  std::size_t i = 5;            // { dg-do compile }
   return 0;
 }
 
index 45adad8c97f9c3f56d46f6b3d23087bd7d5ee499..0b421ee1d2a65e24987f4915e4ac1ec2c31c3c87 100644 (file)
 int main(void)
 {
   // Make sure size_t is in namespace std
-  std::size_t i = 5;
+  std::size_t i = 5;            // { dg-do compile }
   return 0;
 }
-
-
-
-
index 7e0909a39fb942ef12e6d0b30e8db11185a2eac0..e5db1b53756ebb182a208173c37ab0a018308659 100644 (file)
@@ -23,7 +23,7 @@
 #if _GLIBCPP_USE_WCHAR_T
 #include <cwctype>
   // Make sure wint_t is in namespace std
-  std::wint_t i = 5;
+  std::wint_t i = 5;            // { dg-do compile }
 #endif
 
 int main(void)
index 6673521f779f34a3b32cf162dca000f0b85276d3..1163fd119445b6e523cac158d1b3ad37da2aabf9 100644 (file)
@@ -20,7 +20,7 @@
 
 // 17.4.1.2 Headers, fstream
 
-#include <fstream>
+#include <fstream>              // { dg-do compile }
 #include <debug_assert.h>
 
 
index 6ae692397e037eb40c420f313001f0ac63f0eac9..d9929f4d671c7cd9ce7c47febd2d01e6bfa916fe 100644 (file)
@@ -20,7 +20,7 @@
 
 // 17.4.1.2 Headers, iomanip
 
-#include <iomanip>
+#include <iomanip>              // { dg-do compile }
 #include <debug_assert.h>
 
 
index f60587393fb6468dbe8c6e2859f5d17ec60ab728..facbecba65bf9ebeaff2c1d07cd0661067238eb3 100644 (file)
@@ -20,7 +20,7 @@
 
 // 17.4.1.2 Headers, ios
 
-#include <ios>
+#include <ios>                  // { dg-do compile }
 #include <debug_assert.h>
 
 
index b9cb42d035d0e448a58bd5a791743b8797e9d0bc..695b832df55aa13292d23d489fcbf37ae24ca9b4 100644 (file)
@@ -20,7 +20,7 @@
 
 // 17.4.1.2 Headers, iosfwd
 
-#include <iosfwd>
+#include <iosfwd>               // { dg-do compile }
 #include <debug_assert.h>
 
 
index 51434eff47ee291dbfa21214fa26122ff5a69906..790846f188eaff386d2a5bda11d6c9e74b2fe1ab 100644 (file)
@@ -20,7 +20,7 @@
 
 // 17.4.1.2 Headers, iostream
 
-#include <iostream>
+#include <iostream>             // { dg-do compile }
 #include <debug_assert.h>
 
 
index b193f2954b663664ad53f8ca80f62f11a19ca46f..72eb22436007829fd99bd52803d92800c6e7c3d9 100644 (file)
@@ -20,7 +20,7 @@
 
 // 17.4.1.2 Headers, istream
 
-#include <istream>
+#include <istream>              // { dg-do compile }
 #include <debug_assert.h>
 
 
index 731a881fc4775422260425be70ef42b85354200b..d365105b78b4904a030bf031822e2a2952708805 100644 (file)
@@ -20,7 +20,7 @@
 
 // 17.4.1.2 Headers, ostream
 
-#include <ostream>
+#include <ostream>              // { dg-do compile }
 #include <debug_assert.h>
 
 
index 697b8c36db98a57b0d8a0735ce44f8f3c5519c09..bdbf0c46197aa2cb209c925669dea0c14b09b802 100644 (file)
@@ -20,7 +20,7 @@
 
 // 17.4.1.2 Headers, sstream
 
-#include <sstream>
+#include <sstream>              // { dg-do compile }
 #include <debug_assert.h>
 
 
index b8af9f4c6df67db5e56e2c2b24367d7c616c2a48..50234a654431a49243683f3940787839dd79a375 100644 (file)
@@ -20,7 +20,7 @@
 
 // 17.4.1.2 Headers, streambuf
 
-#include <streambuf>
+#include <streambuf>            // { dg-do compile }
 #include <debug_assert.h>
 
 
@@ -28,7 +28,3 @@ int main(void)
 {
   return 0;
 }
-
-
-
-
index d95f17aee68e6b439102a955615438637895726e..2ec4041dd10d09c1b2dfd2fd1087a9f66b21c169 100644 (file)
@@ -80,4 +80,4 @@
   #include <cwctype>
 #endif
 
-int main() { }
+int main() { }                  // { dg-do compile }
index 8fe1836afb998910d02896ec267a9af83ea9d699..d5c01a83d58fe7a8deaeb3e854ae83cb02a1c68a 100644 (file)
@@ -67,4 +67,4 @@
   #include <wctype.h>
 #endif
 
-int main() { }
+int main() { }                  // { dg-do compile }
index e2d671d7fe9ebaa15e8692a4353f72033d16999e..406bc9802e42e11359c774264d42a00f868ab00c 100644 (file)
@@ -67,4 +67,4 @@
   #include <cwctype>
 #endif
 
-int main() { }
+int main() { }                  // { dg-do compile }