Skip to content

Commit 2bd40f4

Browse files
committed
Fix directory name in libcxx rand.dist tests path
1 parent 136f2ba commit 2bd40f4

File tree

24 files changed

+148
-168
lines changed

24 files changed

+148
-168
lines changed

libcxx/test/libcxx/numerics/rand/rand.dis/rand.dist.pois/rand.dist.pois.extreme/bad_engine.verify.cpp

Lines changed: 0 additions & 30 deletions
This file was deleted.

libcxx/test/libcxx/numerics/rand/rand.dis/rand.dist.samp/rand.dist.samp.discrete/bad_engine.verify.cpp

Lines changed: 0 additions & 30 deletions
This file was deleted.

libcxx/test/libcxx/numerics/rand/rand.dis/rand.dist.samp/rand.dist.samp.pconst/bad_engine.verify.cpp

Lines changed: 0 additions & 30 deletions
This file was deleted.

libcxx/test/libcxx/numerics/rand/rand.dis/rand.dist.samp/rand.dist.samp.plinear/bad_engine.verify.cpp

Lines changed: 0 additions & 30 deletions
This file was deleted.
Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -12,16 +12,15 @@
1212

1313
#include <random>
1414

15-
template<class Int>
15+
template <class Int>
1616
struct G {
1717
using result_type = Int;
1818
result_type operator()();
1919
static constexpr result_type min() { return 0; }
2020
static constexpr result_type max() { return 255; }
2121
};
2222

23-
void test(std::bernoulli_distribution dist)
24-
{
23+
void test(std::bernoulli_distribution dist) {
2524
G<int> badg;
2625
G<unsigned> okg;
2726

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -12,16 +12,15 @@
1212

1313
#include <random>
1414

15-
template<class Int>
15+
template <class Int>
1616
struct G {
1717
using result_type = Int;
1818
result_type operator()();
1919
static constexpr result_type min() { return 0; }
2020
static constexpr result_type max() { return 255; }
2121
};
2222

23-
void test(std::binomial_distribution<int> dist)
24-
{
23+
void test(std::binomial_distribution<int> dist) {
2524
G<int> badg;
2625
G<unsigned> okg;
2726

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -13,16 +13,15 @@
1313

1414
#include <random>
1515

16-
template<class Int>
16+
template <class Int>
1717
struct G {
1818
using result_type = Int;
1919
result_type operator()();
2020
static constexpr result_type min() { return 0; }
2121
static constexpr result_type max() { return 255; }
2222
};
2323

24-
void test(std::geometric_distribution<int> dist)
25-
{
24+
void test(std::geometric_distribution<int> dist) {
2625
G<int> badg;
2726
G<unsigned> okg;
2827

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -13,16 +13,15 @@
1313

1414
#include <random>
1515

16-
template<class Int>
16+
template <class Int>
1717
struct G {
1818
using result_type = Int;
1919
result_type operator()();
2020
static constexpr result_type min() { return 0; }
2121
static constexpr result_type max() { return 255; }
2222
};
2323

24-
void test(std::negative_binomial_distribution<int> dist)
25-
{
24+
void test(std::negative_binomial_distribution<int> dist) {
2625
G<int> badg;
2726
G<unsigned> okg;
2827

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -12,16 +12,15 @@
1212

1313
#include <random>
1414

15-
template<class Int>
15+
template <class Int>
1616
struct G {
1717
using result_type = Int;
1818
result_type operator()();
1919
static constexpr result_type min() { return 0; }
2020
static constexpr result_type max() { return 255; }
2121
};
2222

23-
void test(std::normal_distribution<double> dist)
24-
{
23+
void test(std::cauchy_distribution<double> dist) {
2524
G<int> badg;
2625
G<unsigned> okg;
2726

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -12,16 +12,15 @@
1212

1313
#include <random>
1414

15-
template<class Int>
15+
template <class Int>
1616
struct G {
1717
using result_type = Int;
1818
result_type operator()();
1919
static constexpr result_type min() { return 0; }
2020
static constexpr result_type max() { return 255; }
2121
};
2222

23-
void test(std::chi_squared_distribution<double> dist)
24-
{
23+
void test(std::chi_squared_distribution<double> dist) {
2524
G<int> badg;
2625
G<unsigned> okg;
2726

0 commit comments

Comments
 (0)