diff mbox series

[committed] libstdc++: Fix incomplete change to reduce iterations for simulators

Message ID 20240801211141.386410-1-jwakely@redhat.com
State New
Headers show
Series [committed] libstdc++: Fix incomplete change to reduce iterations for simulators | expand

Commit Message

Jonathan Wakely Aug. 1, 2024, 9:11 p.m. UTC
Tested x86_64-linux. Pushed to trunk.

-- >8 --

This should have been done as part of r13-693-ge3b8b4f7814c54, but I
only added the preprocessor logic and didn't use ARGS in the code.

libstdc++-v3/ChangeLog:

	* testsuite/26_numerics/random/discrete_distribution/operators/values.cc:
	Use ARGS to limit number of iterations for simulators.
---
 .../random/discrete_distribution/operators/values.cc        | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)
diff mbox series

Patch

diff --git a/libstdc++-v3/testsuite/26_numerics/random/discrete_distribution/operators/values.cc b/libstdc++-v3/testsuite/26_numerics/random/discrete_distribution/operators/values.cc
index 3cfe0d69f40..a6a2e713d3e 100644
--- a/libstdc++-v3/testsuite/26_numerics/random/discrete_distribution/operators/values.cc
+++ b/libstdc++-v3/testsuite/26_numerics/random/discrete_distribution/operators/values.cc
@@ -40,16 +40,16 @@  void test01()
 
   std::discrete_distribution<> dd1({ });
   auto bdd1 = std::bind(dd1, eng);
-  testDiscreteDist(bdd1, [](int n) { return discrete_pdf(n, { }); } );
+  testDiscreteDist<ARGS>(bdd1, [](int n) { return discrete_pdf(n, { }); } );
 
   std::discrete_distribution<> dd2({ 1.0, 3.0, 2.0});
   auto bdd2 = std::bind(dd2, eng);
-  testDiscreteDist(bdd2, [](int n)
+  testDiscreteDist<ARGS>(bdd2, [](int n)
 		   { return discrete_pdf(n, { 1.0, 3.0, 2.0}); } );
 
   std::discrete_distribution<> dd3({ 2.0, 2.0, 1.0, 0.0, 4.0});
   auto bdd3 = std::bind(dd3, eng);
-  testDiscreteDist(bdd3, [](int n)
+  testDiscreteDist<ARGS>(bdd3, [](int n)
 		   { return discrete_pdf(n, { 2.0, 2.0, 1.0, 0.0, 4.0}); } );
 }