From 39d4715b82d24da054b146539665208a4fdf8c15 Mon Sep 17 00:00:00 2001 From: Andrew Gaul Date: Fri, 17 Apr 2015 17:53:39 -0700 Subject: [PATCH 1/2] Run integration tests via Travis Mail from the Travis team: Thanks for the email. I have set up s3fs-fuse/s3fs-fuse with our alpha testing stack which may allow you to use FUSE. To use it, add the following to your .travis.yml: dist: trusty Please keep in mind that the service may become unavailable without notice, and change details. We welcome your feedback as to what works and what does not with this setup. --- .travis.yml | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/.travis.yml b/.travis.yml index 52bd575..c1d8721 100644 --- a/.travis.yml +++ b/.travis.yml @@ -1,4 +1,5 @@ language: cpp +dist: trusty cache: apt before_install: - sudo apt-get update -qq @@ -8,8 +9,7 @@ script: - ./configure - make - make check -C src -# TODO: Travis does not support FUSE so integration tests cannot run: -# https://github.com/travis-ci/travis-ci/issues/1100 -#after_script: -# - modprobe fuse -# - make check -C test + # Travis granted s3fs access to their upcoming alpha testing stack which may + # allow us to use FUSE. + - modprobe fuse + - make check -C test From b0a12bcac1b5788270d0d83f92a7658c6432abbe Mon Sep 17 00:00:00 2001 From: Andrew Gaul Date: Fri, 24 Apr 2015 11:26:49 -0700 Subject: [PATCH 2/2] Disable rename_before_close This test currently fails and interferes with the larger integration test. References #145. --- test/integration-test-main.sh | 2 ++ 1 file changed, 2 insertions(+) diff --git a/test/integration-test-main.sh b/test/integration-test-main.sh index 0fa1072..b4c81bd 100755 --- a/test/integration-test-main.sh +++ b/test/integration-test-main.sh @@ -274,6 +274,7 @@ rm_test_dir ########################################################## # Testing rename before close ########################################################## +if false; then echo "Testing rename before close ..." $CUR_DIR/rename_before_close $TEST_TEXT_FILE if [ $? != 0 ]; then @@ -283,6 +284,7 @@ fi # clean up rm_test_file +fi ########################################################## # Testing multi-part upload