Files
mongo/dbtests/btreetests.cpp

60 lines
1.5 KiB
C++
Raw Normal View History

// btreetests.cpp : Btree unit tests
//
/**
* Copyright (C) 2008 10gen Inc.
2008-12-28 20:28:49 -05:00
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU Affero General Public License, version 3,
* as published by the Free Software Foundation.
2008-12-28 20:28:49 -05:00
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU Affero General Public License for more details.
2008-12-28 20:28:49 -05:00
*
* You should have received a copy of the GNU Affero General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
2010-04-27 15:27:52 -04:00
#include "pch.h"
#include "../db/db.h"
#include "../db/btree.h"
#include "dbtests.h"
#define BtreeBucket BtreeBucket<V0>
#define btree btree<V0>
#define btreemod btreemod<V0>
2011-08-13 21:22:45 -04:00
#define Continuation Continuation<V0>
#define testName "btree"
#define BTVERSION 0
namespace BtreeTests0 {
#include "btreetests.inl"
}
2011-01-04 00:40:41 -05:00
#undef BtreeBucket
#undef btree
#undef btreemod
2011-08-13 21:22:45 -04:00
#undef Continuation
#define BtreeBucket BtreeBucket<V1>
#define btree btree<V1>
#define btreemod btreemod<V1>
2011-08-13 21:22:45 -04:00
#define Continuation Continuation<V1>
#undef testName
#define testName "btree1"
#undef BTVERSION
#define BTVERSION 1
namespace BtreeTests1 {
2011-07-05 16:12:11 -04:00
#include "btreetests.inl"
}
2011-08-13 21:22:45 -04:00
#undef testName
#define testName "btree1_twostep"
#define TESTTWOSTEP 1
namespace BtreeTests2 {
#include "btreetests.inl"
}