Removed deletion_failure test from travis (lack of chattr support)

This commit is contained in:
deajan 2016-11-15 21:42:49 +01:00
parent 290fbcafe2
commit 5bee165076
1 changed files with 11 additions and 2 deletions

View File

@ -1,6 +1,6 @@
#!/usr/bin/env bash #!/usr/bin/env bash
# osync test suite 2016111501 # osync test suite 2016111502
# 4 tests: # 4 tests:
# quicklocal # quicklocal
@ -285,6 +285,12 @@ function test_Deletetion () {
} }
function test_deletion_failure () { function test_deletion_failure () {
if [ "$TRAVIS_RUN" == true ]; then
echo "Skipping deletionFailure tests as travis does not support chattr."
return 0
fi
for i in "${osyncParameters[@]}"; do for i in "${osyncParameters[@]}"; do
cd "$OSYNC_DIR" cd "$OSYNC_DIR"
@ -345,6 +351,9 @@ function test_deletion_failure () {
done done
} }
function test_skip_deletion () {
echo "Not implemented yet"
}
function test_softdeletion_cleanup () { function test_softdeletion_cleanup () {
declare -A files declare -A files
@ -404,7 +413,7 @@ function test_softdeletion_cleanup () {
function test_FileAttributePropagation () { function test_FileAttributePropagation () {
if [ "$TRAVIS_RUN" == true ]; then if [ "$TRAVIS_RUN" == true ]; then
echo "Skipping FileAttributePropagation tests as travis does not support getfacl / setfacl" echo "Skipping FileAttributePropagation tests as travis does not support getfacl / setfacl."
return 0 return 0
fi fi