File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed
Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -30,7 +30,7 @@ static const uint64_t IGOLDEN64 = 0x9e3779b97f4a7c13ULL;
3030
3131TEST_CASE (" pack unpack bits" ) {
3232 uint64_t value = 0xaa55aa55aa55aa55ULL ; // arbitrary starting value
33- for (int m = 0 ; m < 100 ; ++m) {
33+ for (int m = 0 ; m < 10000 ; ++m) {
3434 for (uint8_t bits = 1 ; bits <= 63 ; ++bits) {
3535 int n = 8 ;
3636 const uint64_t mask = (1ULL << bits) - 1 ;
@@ -61,7 +61,7 @@ TEST_CASE("pack unpack bits") {
6161
6262TEST_CASE (" pack unpack blocks" ) {
6363 uint64_t value = 0xaa55aa55aa55aa55ULL ; // arbitrary starting value
64- for (int n = 0 ; n < 100 ; ++n) {
64+ for (int n = 0 ; n < 10000 ; ++n) {
6565 for (uint8_t bits = 1 ; bits <= 63 ; ++bits) {
6666 const uint64_t mask = (1ULL << bits) - 1 ;
6767 std::vector<uint64_t > input (8 , 0 );
You can’t perform that action at this time.
0 commit comments