mirror of
https://github.com/ceph/ceph
synced 2025-04-01 23:02:17 +00:00
Merge pull request #10153 from tchaikov/wip-no-copy-plugins
test: test_{compression_plugin,async_compressor}: do not copy plugins Reviewed-by: Haomai Wang <haomai@xsky.com>
This commit is contained in:
commit
fe98b0b33b
@ -212,17 +212,6 @@ int main(int argc, char **argv) {
|
||||
|
||||
const char* env = getenv("CEPH_LIB");
|
||||
string directory(env ? env : ".libs");
|
||||
|
||||
// copy libceph_snappy.so into $plugin_dir/compressor for PluginRegistry
|
||||
// TODO: just build the compressor plugins in this subdir
|
||||
string mkdir_compressor = "mkdir -p " + directory + "/compressor";
|
||||
int r = system(mkdir_compressor.c_str());
|
||||
(void)r;
|
||||
|
||||
string cp_libceph_snappy = "cp " + directory + "/libceph_snappy.so* " + directory + "/compressor/";
|
||||
r = system(cp_libceph_snappy.c_str());
|
||||
(void)r;
|
||||
|
||||
g_conf->set_val("plugin_dir", directory, false, false);
|
||||
|
||||
::testing::InitGoogleTest(&argc, argv);
|
||||
|
@ -56,14 +56,6 @@ int main(int argc, char **argv) {
|
||||
|
||||
const char* env = getenv("CEPH_LIB");
|
||||
string directory(env ? env : ".libs");
|
||||
string mkdir_compressor = "mkdir -p " + directory + "/compressor";
|
||||
int r = system(mkdir_compressor.c_str());
|
||||
(void)r;
|
||||
|
||||
string cp_libceph_example = "cp " + directory + "/libceph_example.so* " + directory + "/compressor/";
|
||||
r = system(cp_libceph_example.c_str());
|
||||
(void)r;
|
||||
|
||||
g_conf->set_val("plugin_dir", directory, false, false);
|
||||
|
||||
::testing::InitGoogleTest(&argc, argv);
|
||||
|
Loading…
Reference in New Issue
Block a user