@ -959,13 +959,14 @@ class StressTest {
}
}
int count = 0 ;
int count = 0 ;
while ( iters [ 0 ] - > Valid ( ) ) {
while ( iters [ 0 ] - > Valid ( ) & & iters [ 0 ] - > key ( ) . starts_with ( prefix_slices [ 0 ] ) ) {
count + + ;
count + + ;
std : : string values [ 10 ] ;
std : : string values [ 10 ] ;
// get list of all values for this iteration
// get list of all values for this iteration
for ( int i = 0 ; i < 10 ; i + + ) {
for ( int i = 0 ; i < 10 ; i + + ) {
// no iterator should finish before the first one
// no iterator should finish before the first one
assert ( iters [ i ] - > Valid ( ) ) ;
assert ( iters [ i ] - > Valid ( ) & &
iters [ i ] - > key ( ) . starts_with ( prefix_slices [ i ] ) ) ;
values [ i ] = iters [ i ] - > value ( ) . ToString ( ) ;
values [ i ] = iters [ i ] - > value ( ) . ToString ( ) ;
char expected_first = ( prefixes [ i ] ) [ 0 ] ;
char expected_first = ( prefixes [ i ] ) [ 0 ] ;
@ -993,7 +994,8 @@ class StressTest {
// cleanup iterators and snapshot
// cleanup iterators and snapshot
for ( int i = 0 ; i < 10 ; i + + ) {
for ( int i = 0 ; i < 10 ; i + + ) {
// if the first iterator finished, they should have all finished
// if the first iterator finished, they should have all finished
assert ( ! iters [ i ] - > Valid ( ) ) ;
assert ( ! iters [ i ] - > Valid ( ) | |
! iters [ i ] - > key ( ) . starts_with ( prefix_slices [ i ] ) ) ;
assert ( iters [ i ] - > status ( ) . ok ( ) ) ;
assert ( iters [ i ] - > status ( ) . ok ( ) ) ;
delete iters [ i ] ;
delete iters [ i ] ;
}
}