Remove TransactionLogIteratorRace when -DNDEBUG

This commit is contained in:
Igor Canadi 2014-04-21 11:08:30 -07:00
parent 11e8525422
commit f813279da5
2 changed files with 3 additions and 1 deletions

View file

@ -5441,6 +5441,7 @@ TEST(DBTest, TransactionLogIterator) {
} while (ChangeCompactOptions()); } while (ChangeCompactOptions());
} }
#ifndef NDEBUG // sync point is not included with DNDEBUG build
TEST(DBTest, TransactionLogIteratorRace) { TEST(DBTest, TransactionLogIteratorRace) {
// Setup sync point dependency to reproduce the race condition of // Setup sync point dependency to reproduce the race condition of
// a log file moved to archived dir, in the middle of GetSortedWalFiles // a log file moved to archived dir, in the middle of GetSortedWalFiles
@ -5485,6 +5486,7 @@ TEST(DBTest, TransactionLogIteratorRace) {
} }
} while (ChangeCompactOptions()); } while (ChangeCompactOptions());
} }
#endif
TEST(DBTest, TransactionLogIteratorMoveOverZeroFiles) { TEST(DBTest, TransactionLogIteratorMoveOverZeroFiles) {
do { do {

View file

@ -16,7 +16,7 @@
namespace rocksdb { namespace rocksdb {
class Comparator; class Comparator;
class FileMetaData; struct FileMetaData;
// The file tree structure in Version is prebuilt and the range of each file // The file tree structure in Version is prebuilt and the range of each file
// is known. On Version::Get(), it uses binary search to find a potential file // is known. On Version::Get(), it uses binary search to find a potential file