Merge pull request #32188 from cbodley/wip-qa-rgw-obj-manifest

qa/rgw: add rgw_obj and throttle tests to rgw verify suite

Reviewed-by: Daniel Gryniewicz <dang@redhat.com>
This commit is contained in:
Casey Bodley 2020-01-13 14:45:19 -05:00 committed by GitHub
commit abe5277269
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
4 changed files with 14 additions and 0 deletions

View File

@ -7,3 +7,5 @@ tasks:
- cls/test_cls_refcount.sh
- cls/test_cls_rgw.sh
- rgw/test_rgw_gc_log.sh
- rgw/test_rgw_obj.sh
- rgw/test_rgw_throttle.sh

View File

@ -0,0 +1,5 @@
#!/bin/sh -e
ceph_test_rgw_obj
exit 0

View File

@ -0,0 +1,5 @@
#!/bin/sh -e
ceph_test_rgw_throttle
exit 0

View File

@ -87,6 +87,7 @@ target_link_libraries(ceph_test_rgw_obj
${UNITTEST_LIBS}
${CRYPTO_LIBS}
)
install(TARGETS ceph_test_rgw_obj DESTINATION ${CMAKE_INSTALL_BINDIR})
set(test_rgw_crypto_srcs test_rgw_crypto.cc)
add_executable(unittest_rgw_crypto
@ -128,6 +129,7 @@ add_executable(ceph_test_rgw_throttle
$<TARGET_OBJECTS:unit-main>)
target_link_libraries(ceph_test_rgw_throttle ${rgw_libs}
librados global ${UNITTEST_LIBS})
install(TARGETS ceph_test_rgw_throttle DESTINATION ${CMAKE_INSTALL_BINDIR})
add_executable(unittest_rgw_iam_policy test_rgw_iam_policy.cc)
add_ceph_unittest(unittest_rgw_iam_policy)