1// Copyright (c) Microsoft Corporation. All rights reserved.
2// Licensed under the MIT license.
3
4#include <atomic>
5#include <cstdint>
6#include <cstring>
7#include <deque>
8#include <functional>
9#include <thread>
10#include "gtest/gtest.h"
11#include "core/faster.h"
12#include "device/file_system_disk.h"
13
14using namespace FASTER::core;
15
16typedef FASTER::environment::QueueIoHandler handler_t;
17
18#define CLASS PagingTest_Queue
19
20#include "paging_test.h"
21
22#undef CLASS
23
24int main(int argc, char** argv) {
25 ::testing::InitGoogleTest(&argc, argv);
26 return RUN_ALL_TESTS();
27}