The python script test_readable.py was added for backword and forward compability. maintaining 2 scripts that finally doing the same is west, reverting and using readable.sh and leave the python out. https://tracker.ceph.com/issues/74074 Signed-off-by: Nitzan Mordechai <nmordech@ibm.com>
14 lines
368 B
Bash
Executable File
14 lines
368 B
Bash
Executable File
#!/usr/bin/env bash
|
|
set -ex
|
|
CEPH_ARGS=""
|
|
mydir=`dirname $0`
|
|
ceph-dencoder version
|
|
|
|
# clone the corpus repository on the host
|
|
git clone -b master https://github.com/ceph/ceph-object-corpus.git $CEPH_MNT/client.0/tmp/ceph-object-corpus-master
|
|
|
|
export CORPUS_PATH=$CEPH_MNT/client.0/tmp/ceph-object-corpus-master
|
|
$mydir/../../../src/test/encoding/readable.sh
|
|
|
|
echo $0 OK
|