mirror of
https://github.com/s3fs-fuse/s3fs-fuse.git
synced 2025-01-10 16:20:59 +00:00
3022b87738
To run integration tests, just use: sudo make check This will give you a report of all passes and failures. To add an integration test, just add it to the TESTS variable in s3fs/test/Makefile.am Make sure your test sources integration-test-common.sh and require-root.sh Having many of these for every feature will help us avoid regressions and develop with confidence. git-svn-id: http://s3fs.googlecode.com/svn/trunk@230 df820570-a93a-0410-bd06-b72b767a4274
15 lines
252 B
Bash
15 lines
252 B
Bash
#!/bin/bash -e
|
|
|
|
S3FS=../src/s3fs
|
|
|
|
S3FS_CREDENTIALS_FILE=~/.passwd-s3fs
|
|
|
|
TEST_BUCKET_1=apetresc-s3fs
|
|
TEST_BUCKET_MOUNT_POINT_1=/mnt/s3fs-test
|
|
|
|
if [ ! -f "$S3FS_CREDENTIALS_FILE" ]
|
|
then
|
|
echo "Missing credentials file: $S3FS_CREDENTIALS_FILE"
|
|
exit 1
|
|
fi
|