mirror of
https://github.com/ceph/ceph
synced 2024-12-25 04:43:17 +00:00
7586cde9de
This will let us see what test is failing, exactly, and what its inputs were. Hoping to help find #2187. Signed-off-by: Sage Weil <sage@inktank.com>
17 lines
193 B
Bash
Executable File
17 lines
193 B
Bash
Executable File
#!/bin/bash
|
|
|
|
set -e
|
|
|
|
wget http://ceph.com/qa/pjd.tgz
|
|
tar zxvf pjd*.tgz
|
|
cd pjd*
|
|
make
|
|
cd ..
|
|
mkdir tmp
|
|
cd tmp
|
|
# must be root!
|
|
sudo prove -r -v --exec 'bash -x' ../pjd*/tests
|
|
cd ..
|
|
rm -r tmp pjd*
|
|
|