mirror of
https://github.com/ceph/ceph
synced 2024-12-14 23:46:28 +00:00
cf279a8b72
This will tell us which ones actually failed within a test suite. Signed-off-by: Josh Durgin <josh.durgin@dreamhost.com>
17 lines
185 B
Bash
Executable File
17 lines
185 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
|
|
# must be root!
|
|
sudo prove -r -v ../pjd*/tests
|
|
cd ..
|
|
rm -r tmp pjd*
|
|
|