summaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
authorCarl Hetherington <cth@carlh.net>2015-11-17 19:06:03 +0000
committerCarl Hetherington <cth@carlh.net>2015-11-17 21:00:13 +0000
commitfe6ea5825d3de6e89ffb99e084f62843bfa00fb3 (patch)
treea5e34523caf28af0e6677d557707cd28a770005a /test
parent3225fe54f70efd3867fa662edc7063dfe2d05220 (diff)
Use rand instead of rand_r as rand_r is not necessary and rand is available on Win32.
Diffstat (limited to 'test')
-rw-r--r--test/rgb_xyz_test.cc8
1 files changed, 4 insertions, 4 deletions
diff --git a/test/rgb_xyz_test.cc b/test/rgb_xyz_test.cc
index c08d4979..8f5698fe 100644
--- a/test/rgb_xyz_test.cc
+++ b/test/rgb_xyz_test.cc
@@ -35,7 +35,7 @@ using boost::scoped_array;
/** Convert a test image from sRGB to XYZ and check that the transforms are right */
BOOST_AUTO_TEST_CASE (rgb_xyz_test)
{
- unsigned int seed = 0;
+ srand (0);
dcp::Size const size (640, 480);
scoped_array<uint8_t> rgb (new uint8_t[size.width * size.height * 6]);
@@ -44,7 +44,7 @@ BOOST_AUTO_TEST_CASE (rgb_xyz_test)
for (int x = 0; x < size.width; ++x) {
/* Write a 12-bit random number for each component */
for (int c = 0; c < 3; ++c) {
- *p = (rand_r (&seed) & 0xfff) << 4;
+ *p = (rand () & 0xfff) << 4;
++p;
}
}
@@ -166,7 +166,7 @@ BOOST_AUTO_TEST_CASE (xyz_rgb_range_test)
/** Convert an image from RGB to XYZ and back again */
BOOST_AUTO_TEST_CASE (rgb_xyz_round_trip_test)
{
- unsigned int seed = 0;
+ srand (0);
dcp::Size const size (640, 480);
scoped_array<uint8_t> rgb (new uint8_t[size.width * size.height * 6]);
@@ -175,7 +175,7 @@ BOOST_AUTO_TEST_CASE (rgb_xyz_round_trip_test)
for (int x = 0; x < size.width; ++x) {
/* Write a 12-bit random number for each component */
for (int c = 0; c < 3; ++c) {
- *p = (rand_r (&seed) & 0xfff) << 4;
+ *p = (rand () & 0xfff) << 4;
++p;
}
}