mirror of git://gcc.gnu.org/git/gcc.git
[libstdc++-v3]Add _GLIBCXX_HAVE_LIMIT_FSIZE to guard 27_io/fpos/14775.cc.
libstdc++-v3/ 2015-06-02 Renlin Li <renlin.li@arm.com> * testsuite/27_io/fpos/14775.cc: Add _GLIBCXX_HAVE_LIMIT_FSIZE check. From-SVN: r224015
This commit is contained in:
parent
8da140e0e4
commit
fc7e20fd7a
|
|
@ -1,3 +1,7 @@
|
||||||
|
2015-06-02 Renlin Li <renlin.li@arm.com>
|
||||||
|
|
||||||
|
* testsuite/27_io/fpos/14775.cc: Add _GLIBCXX_HAVE_LIMIT_FSIZE check.
|
||||||
|
|
||||||
2015-06-01 Jonathan Wakely <jwakely@redhat.com>
|
2015-06-01 Jonathan Wakely <jwakely@redhat.com>
|
||||||
|
|
||||||
* testsuite/lib/libstdc++.exp (libstdc++_init): Unset LANGUAGE
|
* testsuite/lib/libstdc++.exp (libstdc++_init): Unset LANGUAGE
|
||||||
|
|
|
||||||
|
|
@ -27,7 +27,7 @@
|
||||||
// Basic test for LFS support.
|
// Basic test for LFS support.
|
||||||
void test01()
|
void test01()
|
||||||
{
|
{
|
||||||
#ifdef _GLIBCXX_USE_LFS
|
#if defined (_GLIBCXX_USE_LFS) && defined (_GLIBCXX_HAVE_LIMIT_FSIZE)
|
||||||
using namespace std;
|
using namespace std;
|
||||||
bool test __attribute__((unused)) = true;
|
bool test __attribute__((unused)) = true;
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue