Merge pull request #1121 from ggtakec/update_test

Added stats cache expire option for test
This commit is contained in:
Takeshi Nakatani 2019-08-06 20:32:48 +09:00 committed by GitHub
commit 0411872dda
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 3 additions and 0 deletions

View File

@ -193,6 +193,8 @@ function start_s3fs {
-o createbucket \
${AUTH_OPT} \
${DIRECT_IO_OPT} \
-o stat_cache_expire=1 \
-o stat_cache_interval_expire=1 \
-o dbglevel=${DBGLEVEL:=info} \
-o retries=3 \
-f \

View File

@ -309,6 +309,7 @@ function test_external_modification {
function test_read_external_object() {
describe "create objects via aws CLI and read via s3fs"
OBJECT_NAME="$(basename $PWD)/${TEST_TEXT_FILE}"
sleep 3
echo "test" | aws_cli cp - "s3://${TEST_BUCKET_1}/${OBJECT_NAME}"
cmp ${TEST_TEXT_FILE} <(echo "test")
rm -f ${TEST_TEXT_FILE}