mirror of
https://github.com/ceph/ceph
synced 2025-01-01 08:32:24 +00:00
907bf5214d
This will make it to be much easier when debugging the qa tests failures. Signed-off-by: Xiubo Li <xiubli@redhat.com>
18 lines
269 B
Bash
Executable File
18 lines
269 B
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
set -ex
|
|
|
|
wget http://download.ceph.com/qa/pjd-fstest-20090130-RC-aclfixes.tgz
|
|
tar zxvf pjd*.tgz
|
|
cd pjd-fstest-20090130-RC
|
|
make clean
|
|
make
|
|
cd ..
|
|
mkdir tmp
|
|
cd tmp
|
|
# must be root!
|
|
sudo prove -r -v --exec 'bash -x' ../pjd*/tests
|
|
cd ..
|
|
rm -rf tmp pjd*
|
|
|