) // default properties of osd pool create
OPTION(osd_erasure_code_plugins, OPT_STR,
"jerasure"
+ " lrc"
#ifdef HAVE_BETTER_YASM_ELF64
" isa"
#endif
run_mon $dir a --public-addr 127.0.0.1 || return 1
# check that erasure code plugins are preloaded
CEPH_ARGS='' ./ceph --admin-daemon $dir/a/ceph-mon.a.asok log flush || return 1
- grep 'load: jerasure' $dir/a/log || return 1
+ grep 'load: jerasure.*lrc' $dir/a/log || return 1
for id in $(seq 0 10) ; do
run_osd $dir $id || return 1
done
# check that erasure code plugins are preloaded
CEPH_ARGS='' ./ceph --admin-daemon $dir/ceph-osd.0.asok log flush || return 1
- grep 'load: jerasure' $dir/osd-0.log || return 1
+ grep 'load: jerasure.*lrc' $dir/osd-0.log || return 1
create_erasure_coded_pool ecpool || return 1
FUNCTIONS=${FUNCTIONS:-$(set | sed -n -e 's/^\(TEST_[0-9a-z_]*\) .*/\1/p')}
for TEST_function in $FUNCTIONS ; do