@ -543,28 +543,31 @@ TEST_F(PerfContextTest, SeekKeyComparison) {
}
}
TEST_F ( PerfContextTest , DBMutexLockCounter ) {
TEST_F ( PerfContextTest , DBMutexLockCounter ) {
SetPerfLevel ( kEnableTime ) ;
int stats_code [ ] = { 0 , static_cast < int > ( DB_MUTEX_WAIT_MICROS ) } ;
int stats_code [ ] = { 0 , static_cast < int > ( DB_MUTEX_WAIT_MICROS ) } ;
for ( int c = 0 ; c < 2 ; + + c ) {
for ( PerfLevel perf_level :
{ PerfLevel : : kEnableTimeExceptForMutex , PerfLevel : : kEnableTime } ) {
for ( int c = 0 ; c < 2 ; + + c ) {
InstrumentedMutex mutex ( nullptr , Env : : Default ( ) , stats_code [ c ] ) ;
InstrumentedMutex mutex ( nullptr , Env : : Default ( ) , stats_code [ c ] ) ;
mutex . Lock ( ) ;
mutex . Lock ( ) ;
std : : thread child_thread ( [ & ] {
std : : thread child_thread ( [ & ] {
SetPerfLevel ( kEnableTime ) ;
SetPerfLevel ( perf_level ) ;
perf_context . Reset ( ) ;
perf_context . Reset ( ) ;
ASSERT_EQ ( perf_context . db_mutex_lock_nanos , 0 ) ;
ASSERT_EQ ( perf_context . db_mutex_lock_nanos , 0 ) ;
mutex . Lock ( ) ;
mutex . Lock ( ) ;
mutex . Unlock ( ) ;
mutex . Unlock ( ) ;
if ( stats_code [ c ] = = DB_MUTEX_WAIT_MICROS ) {
if ( perf_level = = PerfLevel : : kEnableTimeExceptForMutex | |
stats_code [ c ] ! = DB_MUTEX_WAIT_MICROS ) {
ASSERT_EQ ( perf_context . db_mutex_lock_nanos , 0 ) ;
} else {
// increment the counter only when it's a DB Mutex
// increment the counter only when it's a DB Mutex
ASSERT_GT ( perf_context . db_mutex_lock_nanos , 0 ) ;
ASSERT_GT ( perf_context . db_mutex_lock_nanos , 0 ) ;
} else {
ASSERT_EQ ( perf_context . db_mutex_lock_nanos , 0 ) ;
}
}
} ) ;
} ) ;
Env : : Default ( ) - > SleepForMicroseconds ( 100 ) ;
Env : : Default ( ) - > SleepForMicroseconds ( 100 ) ;
mutex . Unlock ( ) ;
mutex . Unlock ( ) ;
child_thread . join ( ) ;
child_thread . join ( ) ;
}
}
}
}
}
TEST_F ( PerfContextTest , FalseDBMutexWait ) {
TEST_F ( PerfContextTest , FalseDBMutexWait ) {