libstdc++: Remove dg-options "-std=c++98" from TR1 tests

These tests need slight adjustments to be valid in C++11 and later, but
there's no reason that can't be done, so that we test them in more
modes.

libstdc++-v3/ChangeLog:

	* testsuite/tr1/6_containers/utility/pair.cc: Remove dg-options
	and qualify ambiguous calls to get.
	* testsuite/tr1/8_c_compatibility/cmath/pow_cmath.cc: Adjust
	expected result for std::pow(float, int) as per DR 550.
This commit is contained in:
Jonathan Wakely 2023-09-04 14:55:51 +01:00
parent 678834e9ff
commit 455907564c
2 changed files with 13 additions and 13 deletions

View file

@ -17,8 +17,6 @@
// with this library; see the file COPYING3. If not see
// <http://www.gnu.org/licenses/>.
// { dg-options "-std=c++98" }
// tr1 additions to pair
#include <tr1/utility>
@ -42,15 +40,14 @@ main()
tuple_element<1, pair<int ,blank_class> >::type
blank3 __attribute__((unused)) = blank;
pair<int,int> test_pair(1, 2);
VERIFY(get<0>(test_pair) == 1);
VERIFY(get<1>(test_pair) == 2);
get<0>(test_pair) = 3;
get<1>(test_pair) = 4;
VERIFY(get<0>(test_pair) == 3);
VERIFY(get<1>(test_pair) == 4);
VERIFY(std::tr1::get<0>(test_pair) == 1);
VERIFY(std::tr1::get<1>(test_pair) == 2);
std::tr1::get<0>(test_pair) = 3;
std::tr1::get<1>(test_pair) = 4;
VERIFY(std::tr1::get<0>(test_pair) == 3);
VERIFY(std::tr1::get<1>(test_pair) == 4);
const pair<int,int> test_pair2(1,2);
VERIFY(get<0>(test_pair2) == 1);
VERIFY(get<1>(test_pair2) == 2);
VERIFY(std::tr1::get<0>(test_pair2) == 1);
VERIFY(std::tr1::get<1>(test_pair2) == 2);
}

View file

@ -17,8 +17,6 @@
// with this library; see the file COPYING3. If not see
// <http://www.gnu.org/licenses/>.
// { dg-options "-std=c++98" }
#include <cmath>
using std::pow;
#include <tr1/cmath>
@ -30,6 +28,11 @@ test01()
using namespace __gnu_test;
float x = 2080703.375F;
#if __cplusplus < 201103L
check_ret_type<float>(std::pow(x, 2));
#else
// LWG 550 What should the return type of pow(float,int) be?
check_ret_type<double>(std::pow(x, 2));
#endif
check_ret_type<double>(std::tr1::pow(x, 2));
}