]> git.apps.os.sepia.ceph.com Git - ceph.git/commitdiff
compressor/zlib: disable ISA-L
authorSage Weil <sage@redhat.com>
Thu, 6 Oct 2016 15:50:31 +0000 (11:50 -0400)
committerSage Weil <sage@redhat.com>
Thu, 6 Oct 2016 19:36:08 +0000 (15:36 -0400)
This fails the unit tests.  Do not reenable until it is fixed!

Signed-off-by: Sage Weil <sage@redhat.com>
src/common/config_opts.h
src/test/compressor/test_compression.cc

index f197d30ee521b55e57916ec9af4b2b7982bf448d..1d20cb02f801b484a6a26f201435c6a7c4a1062a 100644 (file)
@@ -97,7 +97,7 @@ OPTION(xio_max_conns_per_portal, OPT_INT, 32) // max xio_connections per portal/
 OPTION(xio_transport_type, OPT_STR, "rdma") // xio transport type: {rdma or tcp}
 OPTION(xio_max_send_inline, OPT_INT, 512) // xio maximum threshold to send inline
 
-OPTION(compressor_zlib_isal, OPT_BOOL, true)
+OPTION(compressor_zlib_isal, OPT_BOOL, false)
 
 OPTION(async_compressor_enabled, OPT_BOOL, false)
 OPTION(async_compressor_type, OPT_STR, "snappy")
index 9dfe83494c357aeaa53f6d0252411623cbefd6f3..6e8b3bee833cc8eff2470ac7cb15366102d486b8 100644 (file)
@@ -153,7 +153,7 @@ INSTANTIATE_TEST_CASE_P(
   Compression,
   CompressionTest,
   ::testing::Values(
-    "zlib/isal",
+//    "zlib/isal",
     "zlib/noisal",
     "snappy"));