summaryrefslogtreecommitdiffstats
path: root/src/test/system/systest_runnable.h
diff options
context:
space:
mode:
authorKefu Chai <kchai@redhat.com>2016-03-27 15:21:54 +0200
committerKefu Chai <kchai@redhat.com>2016-03-27 15:21:55 +0200
commit239f164a02042ef593f3646855a3690627e71f48 (patch)
tree6e364d3f3dde1a7f289ab7fc1d224fe8f4875bb4 /src/test/system/systest_runnable.h
parentMerge pull request #7094 from songbaisen/wipdf (diff)
downloadceph-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.h2
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().