Index: testsuite/20_util/is_trivial/value.cc =================================================================== --- testsuite/20_util/is_trivial/value.cc (revision 0) +++ testsuite/20_util/is_trivial/value.cc (revision 0) @@ -0,0 +1,70 @@ +// { dg-options "-std=gnu++0x" } +// 2010-03-23 Paolo Carlini +// +// Copyright (C) 2010 Free Software Foundation, Inc. +// +// This file is part of the GNU ISO C++ Library. This library is free +// software; you can redistribute it and/or modify it under the +// terms of the GNU General Public License as published by the +// Free Software Foundation; either version 3, or (at your option) +// any later version. +// +// This library is distributed in the hope that it will be useful, +// but WITHOUT ANY WARRANTY; without even the implied warranty of +// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +// GNU General Public License for more details. +// +// You should have received a copy of the GNU General Public License along +// with this library; see the file COPYING3. If not see +// . + +#include +#include +#include + +struct NType // neither trivial nor standard-layout +{ + int i; + int j; + virtual ~NType(); +}; + +struct TType // trivial but not standard-layout +{ + int i; + +private: + int j; +}; + +struct SLType // standard-layout but not trivial +{ + int i; + int j; + ~SLType(); +}; + +struct PODType // both trivial and standard-layout +{ + int i; + int j; +}; + +void test01() +{ + bool test __attribute__((unused)) = true; + using std::is_trivial; + using namespace __gnu_test; + + VERIFY( (test_category(true)) ); + VERIFY( (test_category(true)) ); + + VERIFY( (test_category(false)) ); + VERIFY( (test_category(false)) ); +} + +int main() +{ + test01(); + return 0; +} Index: testsuite/20_util/is_pod/value.cc =================================================================== --- testsuite/20_util/is_pod/value.cc (revision 157668) +++ testsuite/20_util/is_pod/value.cc (working copy) @@ -22,6 +22,34 @@ #include #include +struct NType // neither trivial nor standard-layout +{ + int i; + int j; + virtual ~NType(); +}; + +struct TType // trivial but not standard-layout +{ + int i; + +private: + int j; +}; + +struct SLType // standard-layout but not trivial +{ + int i; + int j; + ~SLType(); +}; + +struct PODType // both trivial and standard-layout +{ + int i; + int j; +}; + void test01() { bool test __attribute__((unused)) = true; @@ -43,8 +71,12 @@ VERIFY( (test_category(true)) ); VERIFY( (test_category(true)) ); VERIFY( (test_category(true)) ); + VERIFY( (test_category(true)) ); VERIFY( (test_category(false)) ); + VERIFY( (test_category(false)) ); + VERIFY( (test_category(false)) ); + VERIFY( (test_category(false)) ); } int main() Index: testsuite/20_util/is_standard_layout/value.cc =================================================================== --- testsuite/20_util/is_standard_layout/value.cc (revision 0) +++ testsuite/20_util/is_standard_layout/value.cc (revision 0) @@ -0,0 +1,70 @@ +// { dg-options "-std=gnu++0x" } +// 2010-03-23 Paolo Carlini +// +// Copyright (C) 2010 Free Software Foundation, Inc. +// +// This file is part of the GNU ISO C++ Library. This library is free +// software; you can redistribute it and/or modify it under the +// terms of the GNU General Public License as published by the +// Free Software Foundation; either version 3, or (at your option) +// any later version. +// +// This library is distributed in the hope that it will be useful, +// but WITHOUT ANY WARRANTY; without even the implied warranty of +// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +// GNU General Public License for more details. +// +// You should have received a copy of the GNU General Public License along +// with this library; see the file COPYING3. If not see +// . + +#include +#include +#include + +struct NType // neither trivial nor standard-layout +{ + int i; + int j; + virtual ~NType(); +}; + +struct TType // trivial but not standard-layout +{ + int i; + +private: + int j; +}; + +struct SLType // standard-layout but not trivial +{ + int i; + int j; + ~SLType(); +}; + +struct PODType // both trivial and standard-layout +{ + int i; + int j; +}; + +void test01() +{ + bool test __attribute__((unused)) = true; + using std::is_standard_layout; + using namespace __gnu_test; + + VERIFY( (test_category(true)) ); + VERIFY( (test_category(true)) ); + + VERIFY( (test_category(false)) ); + VERIFY( (test_category(false)) ); +} + +int main() +{ + test01(); + return 0; +}