diff options
author | Jonathan Wakely <jwakely@redhat.com> | 2014-10-17 13:21:29 +0100 |
---|---|---|
committer | Jonathan Wakely <redi@gcc.gnu.org> | 2014-10-17 13:21:29 +0100 |
commit | 6666a3ef8795d56a0fce1e2716e226f93cd99283 (patch) | |
tree | 9b85542f6892a0efcc7e693d3b6360a9ee8d2385 | |
parent | 37285913f31c9877d93c440cdf8c8be4d73c3a02 (diff) | |
download | gcc-6666a3ef8795d56a0fce1e2716e226f93cd99283.zip gcc-6666a3ef8795d56a0fce1e2716e226f93cd99283.tar.gz gcc-6666a3ef8795d56a0fce1e2716e226f93cd99283.tar.bz2 |
hexfloat.cc: Add dg-require-string-conversions.
* testsuite/27_io/basic_ostream/inserters_arithmetic/char/hexfloat.cc:
Add dg-require-string-conversions.
* testsuite/27_io/headers/cstdio/types_std.cc: Test for fpos_t.
From-SVN: r216398
-rw-r--r-- | libstdc++-v3/ChangeLog | 6 | ||||
-rw-r--r-- | libstdc++-v3/testsuite/27_io/basic_ostream/inserters_arithmetic/char/hexfloat.cc | 1 | ||||
-rw-r--r-- | libstdc++-v3/testsuite/27_io/headers/cstdio/types_std.cc | 2 |
3 files changed, 8 insertions, 1 deletions
diff --git a/libstdc++-v3/ChangeLog b/libstdc++-v3/ChangeLog index b915a0b..bc8468f 100644 --- a/libstdc++-v3/ChangeLog +++ b/libstdc++-v3/ChangeLog @@ -1,3 +1,9 @@ +2014-10-17 Jonathan Wakely <jwakely@redhat.com> + + * testsuite/27_io/basic_ostream/inserters_arithmetic/char/hexfloat.cc: + Add dg-require-string-conversions. + * testsuite/27_io/headers/cstdio/types_std.cc: Test for fpos_t. + 2014-10-17 Ville Voutilainen <ville.voutilainen@gmail.com> Implement the Library Fundamentals v1 variable templates. diff --git a/libstdc++-v3/testsuite/27_io/basic_ostream/inserters_arithmetic/char/hexfloat.cc b/libstdc++-v3/testsuite/27_io/basic_ostream/inserters_arithmetic/char/hexfloat.cc index 485a485..7fe6ff8 100644 --- a/libstdc++-v3/testsuite/27_io/basic_ostream/inserters_arithmetic/char/hexfloat.cc +++ b/libstdc++-v3/testsuite/27_io/basic_ostream/inserters_arithmetic/char/hexfloat.cc @@ -1,4 +1,5 @@ // { dg-options "-std=gnu++11" } +// { dg-require-string-conversions "" } // 2014-03-27 RĂ¼diger Sonderfeld // test the hexadecimal floating point inserters (facet num_put) diff --git a/libstdc++-v3/testsuite/27_io/headers/cstdio/types_std.cc b/libstdc++-v3/testsuite/27_io/headers/cstdio/types_std.cc index a359b87..a34663f 100644 --- a/libstdc++-v3/testsuite/27_io/headers/cstdio/types_std.cc +++ b/libstdc++-v3/testsuite/27_io/headers/cstdio/types_std.cc @@ -23,5 +23,5 @@ namespace gnu { std::size_t s; std::FILE f; - std::FILE fpos_t; + std::fpos_t p; } |