mirror of
https://github.com/ceph/ceph
synced 2024-12-16 08:26:25 +00:00
0e9a0cd7b8
The pjd script now uses the latest version of pjd with an additional test for opening a non-existent file. Signed-off-by: Sam Lang <sam.lang@inktank.com>
17 lines
220 B
Bash
Executable File
17 lines
220 B
Bash
Executable File
#!/bin/bash
|
|
|
|
set -e
|
|
|
|
wget http://ceph.com/qa/pjd-fstest-20090130-RC-open24.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 -rf tmp pjd*
|
|
|