diff options
author | Uros Bizjak <ubizjak@gmail.com> | 2020-03-16 14:38:06 +0100 |
---|---|---|
committer | Uros Bizjak <ubizjak@gmail.com> | 2020-03-16 14:38:06 +0100 |
commit | 136fec1e27fa9179f9ffb9a18a3b1c26d7f3f286 (patch) | |
tree | 4a20e1269692667295ded9b419bdcc1d336e0f07 | |
parent | 5a3c42b227bbe9e7acb5335088d2255262311bd8 (diff) | |
download | gcc-136fec1e27fa9179f9ffb9a18a3b1c26d7f3f286.zip gcc-136fec1e27fa9179f9ffb9a18a3b1c26d7f3f286.tar.gz gcc-136fec1e27fa9179f9ffb9a18a3b1c26d7f3f286.tar.bz2 |
x32 does not support MS ABI, skip testcases that require it.
* testsuite/20_util/bind/91371.cc: Skip for x32.
* testsuite/20_util/is_function/91371.cc: Ditto.
* testsuite/20_util/is_member_function_pointer/91371.cc: Ditto.
* testsuite/20_util/is_object/91371.cc: Ditto.
4 files changed, 4 insertions, 4 deletions
diff --git a/libstdc++-v3/testsuite/20_util/bind/91371.cc b/libstdc++-v3/testsuite/20_util/bind/91371.cc index a076177..5c872f1 100644 --- a/libstdc++-v3/testsuite/20_util/bind/91371.cc +++ b/libstdc++-v3/testsuite/20_util/bind/91371.cc @@ -15,7 +15,7 @@ // with this library; see the file COPYING3. If not see // <http://www.gnu.org/licenses/>. -// { dg-do compile { target i?86-*-* x86_64-*-* } } +// { dg-do compile { target { { i?86-*-* x86_64-*-* } && { ! x32 } } } } // { dg-require-effective-target c++11 } #include <functional> diff --git a/libstdc++-v3/testsuite/20_util/is_function/91371.cc b/libstdc++-v3/testsuite/20_util/is_function/91371.cc index eccb3e0..700ee60 100644 --- a/libstdc++-v3/testsuite/20_util/is_function/91371.cc +++ b/libstdc++-v3/testsuite/20_util/is_function/91371.cc @@ -15,7 +15,7 @@ // with this library; see the file COPYING3. If not see // <http://www.gnu.org/licenses/>. -// { dg-do compile { target i?86-*-* x86_64-*-* } } +// { dg-do compile { target { { i?86-*-* x86_64-*-* } && { ! x32 } } } } // { dg-require-effective-target c++11 } #include <type_traits> diff --git a/libstdc++-v3/testsuite/20_util/is_member_function_pointer/91371.cc b/libstdc++-v3/testsuite/20_util/is_member_function_pointer/91371.cc index ace05e0..376be9e 100644 --- a/libstdc++-v3/testsuite/20_util/is_member_function_pointer/91371.cc +++ b/libstdc++-v3/testsuite/20_util/is_member_function_pointer/91371.cc @@ -15,7 +15,7 @@ // with this library; see the file COPYING3. If not see // <http://www.gnu.org/licenses/>. -// { dg-do compile { target i?86-*-* x86_64-*-* } } +// { dg-do compile { target { { i?86-*-* x86_64-*-* } && { ! x32 } } } } // { dg-require-effective-target c++11 } #include <type_traits> diff --git a/libstdc++-v3/testsuite/20_util/is_object/91371.cc b/libstdc++-v3/testsuite/20_util/is_object/91371.cc index 8387cdb..6fc3fd8 100644 --- a/libstdc++-v3/testsuite/20_util/is_object/91371.cc +++ b/libstdc++-v3/testsuite/20_util/is_object/91371.cc @@ -15,7 +15,7 @@ // with this library; see the file COPYING3. If not see // <http://www.gnu.org/licenses/>. -// { dg-do compile { target i?86-*-* x86_64-*-* } } +// { dg-do compile { target { { i?86-*-* x86_64-*-* } && { ! x32 } } } } // { dg-require-effective-target c++11 } #include <type_traits> |