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:
Kefu Chai 2016-07-12 23:43:24 +08:00 committed by GitHub
commit fe98b0b33b
2 changed files with 0 additions and 19 deletions

View File

@ -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);

View File

@ -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);