Added stats cache expire option for test

This commit is contained in:
Takeshi Nakatani 2019-08-06 10:55:38 +00:00
parent fd13eb314b
commit d8f1aef7be
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}