Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[#6131] feat (gvfs-fuse): Add integration test framework of gvfs-fuse #6160

Merged
merged 29 commits into from
Jan 14, 2025
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Fix
diqiu50 committed Jan 6, 2025
commit 4ad62ed58316b800695f35d473b332c27e959939
7 changes: 3 additions & 4 deletions clients/filesystem-fuse/tests/bin/start_backend.sh
Original file line number Diff line number Diff line change
@@ -108,10 +108,9 @@ curl -X POST -H "Accept: application/vnd.gravitino.v1+json" \
echo "Start the Gvfs fuse client"

MOUNT_DIR=$CLIENT_FUSE_DIR/target/gvfs
if [ -d "$MOUNT_DIR" ]; then
echo "Unmount the existing mount point"
umount -l $MOUNT_DIR > /dev/null 2>&1 || true
else

umount $MOUNT_DIR > /dev/null 2>&1 || true
if [ ! -d "$MOUNT_DIR" ]; then
echo "Create the mount point"
mkdir -p $MOUNT_DIR
fi