diff options
author | Sam Lang <sam.lang@inktank.com> | 2013-01-02 14:39:12 -0600 |
---|---|---|
committer | Sam Lang <sam.lang@inktank.com> | 2013-01-02 17:08:37 -0600 |
commit | 0e9a0cd7b82ec2feb21475018db400a294c01bd3 (patch) | |
tree | 23a47c9f4effd5a03d9d3a18ea81c0f61bd4a9ac | |
parent | 82297706da549e2e7451eed45b7f449958b6a10b (diff) | |
download | ceph-0e9a0cd7b82ec2feb21475018db400a294c01bd3.tar.gz |
qa/workunit: Update pjd script to use new tarball
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>
-rwxr-xr-x | qa/workunits/suites/pjd.sh | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/qa/workunits/suites/pjd.sh b/qa/workunits/suites/pjd.sh index d82bd35478a..008ff4f8e50 100755 --- a/qa/workunits/suites/pjd.sh +++ b/qa/workunits/suites/pjd.sh @@ -2,7 +2,7 @@ set -e -wget http://ceph.com/qa/pjd.tgz +wget http://ceph.com/qa/pjd-fstest-20090130-RC-open24.tgz tar zxvf pjd*.tgz cd pjd* make @@ -12,5 +12,5 @@ cd tmp # must be root! sudo prove -r -v --exec 'bash -x' ../pjd*/tests cd .. -rm -r tmp pjd* +rm -rf tmp pjd* |