diff options
author | Kefu Chai <kchai@redhat.com> | 2016-03-27 15:21:54 +0200 |
---|---|---|
committer | Kefu Chai <kchai@redhat.com> | 2016-03-27 15:21:55 +0200 |
commit | 239f164a02042ef593f3646855a3690627e71f48 (patch) | |
tree | 6e364d3f3dde1a7f289ab7fc1d224fe8f4875bb4 /src/test/system/systest_runnable.h | |
parent | Merge pull request #7094 from songbaisen/wipdf (diff) | |
download | ceph-239f164a02042ef593f3646855a3690627e71f48.tar.xz ceph-239f164a02042ef593f3646855a3690627e71f48.zip |
test/system/*: use dynamically generated pool name
was using "foo" for the pool name. this works if we are performing
tests in serial. but if we do it in parallel, the tests interfere
with each other.
Fixes: #15240
Signed-off-by: Kefu Chai <kchai@redhat.com>
Diffstat (limited to 'src/test/system/systest_runnable.h')
-rw-r--r-- | src/test/system/systest_runnable.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/test/system/systest_runnable.h b/src/test/system/systest_runnable.h index bd7d2586bc3..c19441c25de 100644 --- a/src/test/system/systest_runnable.h +++ b/src/test/system/systest_runnable.h @@ -36,7 +36,7 @@ RETURN1_IF_NOT_VAL(0, expr) extern void* systest_runnable_pthread_helper(void *arg); - +std::string get_temp_pool_name(const char* prefix); /* Represents a single test thread / process. * * Inherit from this class and implement the test body in run(). |