From: Jason Dillaman Date: Fri, 19 Apr 2019 18:15:49 +0000 (-0400) Subject: test/librbd: drop 'ceph_test_librbd_api' target X-Git-Tag: v14.2.2~148^2 X-Git-Url: http://git-server-git.apps.pok.os.sepia.ceph.com/?a=commitdiff_plain;h=refs%2Fpull%2F28091%2Fhead;p=ceph.git test/librbd: drop 'ceph_test_librbd_api' target This was used for API backwards compatibility testing, but now that the C++ API will not remain stable, it serves no purpose. Fixes: http://tracker.ceph.com/issues/39072 Signed-off-by: Jason Dillaman (cherry picked from commit 5b0a611a48bffb4d11d5a1cda21c5eaefb3576fb) --- diff --git a/qa/workunits/rbd/test_librbd_api.sh b/qa/workunits/rbd/test_librbd_api.sh deleted file mode 100755 index 975144b88992c..0000000000000 --- a/qa/workunits/rbd/test_librbd_api.sh +++ /dev/null @@ -1,4 +0,0 @@ -#!/bin/sh -e - -ceph_test_librbd_api -exit 0 diff --git a/src/test/librbd/CMakeLists.txt b/src/test/librbd/CMakeLists.txt index 2bf6723c40ec0..4738cb98229a5 100644 --- a/src/test/librbd/CMakeLists.txt +++ b/src/test/librbd/CMakeLists.txt @@ -145,19 +145,6 @@ target_link_libraries(ceph_test_librbd radostest) target_compile_definitions(ceph_test_librbd PRIVATE "TEST_LIBRBD_INTERNALS") -add_executable(ceph_test_librbd_api - test_support.cc - test_librbd.cc - test_main.cc - $) -target_link_libraries(ceph_test_librbd_api - ceph-common - radostest - radostest-cxx - librbd - librados - ${UNITTEST_LIBS}) - add_executable(ceph_test_librbd_fsx fsx.cc $ @@ -182,5 +169,4 @@ install(TARGETS install(TARGETS ceph_test_librbd - ceph_test_librbd_api DESTINATION ${CMAKE_INSTALL_BINDIR})