Skip to content

Commit

Permalink
test/librbd: utilize unique pool for cache tier testing
Browse files Browse the repository at this point in the history
Fixes: http://tracker.ceph.com/issues/11502
Signed-off-by: Jason Dillaman <dillaman@redhat.com>
(cherry picked from commit c42c54d)

Conflicts:
	src/test/librbd/test_librbd.cc: Resolved in TEST_F
  • Loading branch information
Jason Dillaman authored and Prashant D committed Feb 23, 2018
1 parent f2f28ff commit de3e74e
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/test/librbd/test_librbd.cc
Expand Up @@ -3028,9 +3028,10 @@ TEST_F(TestLibRBD, ListChildrenTiered)
{
REQUIRE_FEATURE(RBD_FEATURE_LAYERING);

string pool_name1 = m_pool_name;
string pool_name1 = create_pool(true);
string pool_name2 = create_pool(true);
string pool_name3 = create_pool(true);
ASSERT_NE("", pool_name1);
ASSERT_NE("", pool_name2);
ASSERT_NE("", pool_name3);

Expand Down

0 comments on commit de3e74e

Please sign in to comment.