Skip to content

Commit

Permalink
Remove debug.
Browse files Browse the repository at this point in the history
  • Loading branch information
abellgithub committed Sep 16, 2014
1 parent 936ef4c commit 0794167
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions test/unit/PointBufferTest.cpp
Expand Up @@ -242,7 +242,6 @@ BOOST_AUTO_TEST_CASE(bigfile)
PointContext ctx;

point_count_t NUM_PTS = 1000000;
// point_count_t NUM_PTS = 10;

ctx.registerDim(Dimension::Id::X);
ctx.registerDim(Dimension::Id::Y);
Expand Down Expand Up @@ -270,7 +269,7 @@ BOOST_AUTO_TEST_CASE(bigfile)
PointId ids[NUM_PTS];
for (PointId idx = 0; idx < NUM_PTS; ++idx)
ids[idx] = idx;
// Do a bunch of swaps.
// Do a bunch of random swaps.
for (PointId idx = 0; idx < NUM_PTS; ++idx)
std::swap(ids[idx], ids[random() % NUM_PTS]);

Expand Down

0 comments on commit 0794167

Please sign in to comment.