File tree 2 files changed +25
-5
lines changed
test/std/numerics/rand/rand.device
2 files changed +25
-5
lines changed Original file line number Diff line number Diff line change 13
13
#define _CRT_RAND_S
14
14
#endif // defined(_LIBCPP_USING_WIN32_RANDOM)
15
15
16
+ #include " limits"
16
17
#include " random"
17
18
#include " system_error"
18
19
29
30
#elif defined(_LIBCPP_USING_DEV_RANDOM)
30
31
#include < fcntl.h>
31
32
#include < unistd.h>
33
+ #if __has_include(<sys/ioctl.h>) && __has_include(<linux/random.h>)
34
+ #include < sys/ioctl.h>
35
+ #include < linux/random.h>
36
+ #endif
32
37
#elif defined(_LIBCPP_USING_NACL_RANDOM)
33
38
#include < nacl/nacl_random.h>
34
39
#endif
@@ -172,7 +177,21 @@ random_device::operator()()
172
177
double
173
178
random_device::entropy () const _NOEXCEPT
174
179
{
180
+ #if defined(_LIBCPP_USING_DEV_RANDOM) && defined(RNDGETENTCNT)
181
+ int ent;
182
+ if (::ioctl (__f_, RNDGETENTCNT, &ent) < 0 )
183
+ return 0 ;
184
+
185
+ if (ent < 0 )
175
186
return 0 ;
187
+
188
+ if (ent > std::numeric_limits<result_type>::digits)
189
+ return std::numeric_limits<result_type>::digits;
190
+
191
+ return ent;
192
+ #else
193
+ return 0 ;
194
+ #endif
176
195
}
177
196
178
197
_LIBCPP_END_NAMESPACE_STD
Original file line number Diff line number Diff line change 16
16
17
17
#include < random>
18
18
#include < cassert>
19
+ #include < climits>
19
20
20
21
#include " test_macros.h"
21
22
22
- int main (int , char **)
23
- {
24
- std::random_device r ;
25
- double e = r. entropy ( );
26
- (( void )e); // Prevent unused warning
23
+ int main (int , char **) {
24
+ std::random_device r;
25
+ double e = r. entropy () ;
26
+ assert (e >= 0 );
27
+ assert (e <= sizeof ( typename std::random_device::result_type) * CHAR_BIT);
27
28
28
29
return 0 ;
29
30
}
You can’t perform that action at this time.
0 commit comments