libstdc++: Require c++98_only effective target for a test

This test checks a conversion which only exists in C++98 and won't
compile since C++11. It uses { dg-options "-std=gnu++98" } so that it is
explicitly run in C++98 mode. This change also adds a target selector so
that the test will be skipped if the dg-options directive is filtered
out or overridden.

libstdc++-v3/ChangeLog:

	* testsuite/27_io/basic_ios/conv/voidptr.cc: Add c++98_only
	target selector.
This commit is contained in:
Jonathan Wakely 2020-07-02 21:27:12 +01:00
parent b857b17977
commit 5079855e7e
1 changed files with 1 additions and 0 deletions

View File

@ -16,6 +16,7 @@
// <http://www.gnu.org/licenses/>.
// { dg-options "-std=gnu++98" }
// { dg-do run { target c++98_only } }
#include <ios>
#include <testsuite_hooks.h>