Skip to content

Commit 54e0865

Browse files
Merge pull request ceph#59857 from JonBailey1993/JonBailey1993/ceph_test_rados_io_sequence
src/test/osd: create ceph_test_rados_io_sequence testing tool Reviewed-by: Ronen Friedman <[email protected]>
2 parents 86227c0 + 4371aab commit 54e0865

17 files changed

+3602
-0
lines changed

src/common/CMakeLists.txt

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,7 @@ if(WIN32)
1212
add_library(dlfcn_win32 STATIC win32/dlfcn.cc win32/errno.cc)
1313
endif()
1414

15+
add_subdirectory(io_exerciser)
1516
add_subdirectory(options)
1617

1718
set(common_srcs
Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
add_library(object_io_exerciser STATIC
2+
DataGenerator.cc
3+
IoOp.cc
4+
IoSequence.cc
5+
Model.cc
6+
ObjectModel.cc
7+
RadosIo.cc
8+
)
9+
10+
target_link_libraries(object_io_exerciser
11+
librados
12+
global
13+
)

0 commit comments

Comments
 (0)