移植到 Hyper-V

This commit is contained in:
2024-04-26 05:00:24 +00:00
parent 6d20a4dd8c
commit 8e1d8c7291
2 changed files with 3 additions and 3 deletions

View File

@ -19,7 +19,7 @@ TEST(Basic, BasicTest) {
BufferPoolManager buffer_pool_manager(10, 3, &disk_manager);
}
TEST(BufferPoolManagerTest, DISABLED_BinaryDataTest) {
TEST(BufferPoolManagerTest, BinaryDataTest) {
const std::string db_name = "test.db";
const size_t buffer_pool_size = 10;
const size_t k = 5;
@ -85,7 +85,7 @@ TEST(BufferPoolManagerTest, DISABLED_BinaryDataTest) {
}
// NOLINTNEXTLINE
TEST(BufferPoolManagerTest, DISABLED_SampleTest) {
TEST(BufferPoolManagerTest, SampleTest) {
const std::string db_name = "test.db";
const size_t buffer_pool_size = 10;
const size_t k = 5;

View File

@ -7,7 +7,7 @@
#include "bpt/buffer_pool_manager.h"
#include "bpt/config.h"
TEST(PageGuardTest, DISABLED_SampleTest) {
TEST(PageGuardTest, SampleTest) {
const std::string db_name = "/tmp/test.db";
const size_t buffer_pool_size = 5;
const size_t k = 2;