mirror of
https://github.com/ceph/ceph
synced 2025-01-07 11:41:48 +00:00
16 lines
161 B
Bash
Executable File
16 lines
161 B
Bash
Executable File
#!/bin/bash
|
|
|
|
set -e
|
|
|
|
wget http://ceph.newdream.net/qa/pjd.tgz
|
|
tar zxvf pjd*.tgz
|
|
cd pjd*
|
|
make
|
|
cd ..
|
|
mkdir tmp
|
|
cd tmp
|
|
prove -r ../pjd*/tests
|
|
cd ..
|
|
rm -r tmp pjd*
|
|
|