mirror of
https://github.com/ceph/ceph
synced 2024-12-22 11:31:55 +00:00
e6662e5a6d
Signed-off-by: Yazen Ghannam <yazen.ghannam@linaro.org>
19 lines
292 B
Bash
Executable File
19 lines
292 B
Bash
Executable File
#!/bin/bash
|
|
|
|
set -e
|
|
|
|
#wget http://ceph.com/qa/pjd-fstest-20090130-RC-open24.tgz
|
|
wget http://ceph.com/qa/pjd-fstest-20090130-RC-aclfixes.tgz
|
|
tar zxvf pjd*.tgz
|
|
cd pjd*
|
|
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*
|
|
|