mirror of
https://github.com/ceph/ceph
synced 2024-12-20 10:23:24 +00:00
a1dbc9ceec
Test 45 in xacl/00.t fails on ext4 and cephfs. Just disable it. Everything else passes. Signed-off-by: Sage Weil <sage@inktank.com>
18 lines
281 B
Bash
Executable File
18 lines
281 B
Bash
Executable File
#!/bin/bash
|
|
|
|
set -e
|
|
|
|
#wget http://ceph.com/qa/pjd-fstest-20090130-RC-open24.tgz
|
|
wget http://ceph.com/qa/pjd-fstest-20090130-RC-aclfixes.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*
|
|
|