Browse Source

[2332] renamed a too-short test name a possibly better one

JINMEI Tatuya 12 years ago
parent
commit
b6d2a03ff5
1 changed files with 1 additions and 1 deletions
  1. 1 1
      src/lib/util/threads/tests/condvar_unittest.cc

+ 1 - 1
src/lib/util/threads/tests/condvar_unittest.cc

@@ -137,7 +137,7 @@ signalAndWait(CondVar* condvar, Mutex* mutex) {
     condvar->wait(*mutex);
 }
 
-TEST_F(CondVarTest, bad) {
+TEST_F(CondVarTest, destroyWhileWait) {
     // We'll destroy a CondVar object while the thread is still waiting
     // on it.  This will trigger an assertion failure.
     EXPECT_DEATH_IF_SUPPORTED({