summaryrefslogtreecommitdiff
path: root/db/skiplist_test.cc
diff options
context:
space:
mode:
authorgabor@google.com <gabor@google.com@62dab493-f737-651d-591e-8d6aee1b9529>2011-07-19 23:36:47 +0000
committergabor@google.com <gabor@google.com@62dab493-f737-651d-591e-8d6aee1b9529>2011-07-19 23:36:47 +0000
commit6872ace90110799f87402cbc594c4cbf1bc474c7 (patch)
treee6292e5ec9404ddab7c1de7b7272927161b06232 /db/skiplist_test.cc
parent6699c7ebe68fba9673ea7a78b54e0eb558102301 (diff)
downloadleveldb-6872ace90110799f87402cbc594c4cbf1bc474c7.tar.gz
Sun Studio support, and fix for test related memory fixes.
- LevelDB patch for Sun Studio Based on a patch submitted by Theo Schlossnagle - thanks! This fixes Issue 17. - Fix a couple of test related memory leaks. git-svn-id: https://leveldb.googlecode.com/svn/trunk@38 62dab493-f737-651d-591e-8d6aee1b9529
Diffstat (limited to 'db/skiplist_test.cc')
-rw-r--r--db/skiplist_test.cc4
1 files changed, 2 insertions, 2 deletions
diff --git a/db/skiplist_test.cc b/db/skiplist_test.cc
index 5f9ec0d..2bd8d22 100644
--- a/db/skiplist_test.cc
+++ b/db/skiplist_test.cc
@@ -238,14 +238,14 @@ class ConcurrentTest {
current = MakeKey(K, 0);
} else {
current = iter.key();
- ASSERT_TRUE(IsValidKey(current)) << std::hex << current;
+ ASSERT_TRUE(IsValidKey(current)) << current;
}
ASSERT_LE(pos, current) << "should not go backwards";
// Verify that everything in [pos,current) was not present in
// initial_state.
while (pos < current) {
- ASSERT_LT(key(pos), K) << std::hex << pos;
+ ASSERT_LT(key(pos), K) << pos;
// Note that generation 0 is never inserted, so it is ok if
// <*,0,*> is missing.