Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
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
6 changes: 3 additions & 3 deletions mount_tests.sh
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ function run_allow_root_test {
useradd fusertest1
useradd fusertest2
DIR=$(su fusertest1 -c "mktemp --directory")
cargo build --example hello --features libfuse,abi-7-30 > /dev/null 2>&1
cargo build --example hello --features libfuse > /dev/null 2>&1
su fusertest1 -c "target/debug/examples/hello $DIR --allow-root" &
FUSE_PID=$!
sleep 2
Expand Down Expand Up @@ -152,8 +152,8 @@ apt autoremove -y
apt install -y libfuse3-dev fuse3
echo 'user_allow_other' >> /etc/fuse.conf

run_test --features=libfuse,abi-7-30 'with libfuse3'
run_test --features=libfuse,abi-7-30 'with libfuse3' --auto-unmount
run_test --features=libfuse 'with libfuse3'
run_test --features=libfuse 'with libfuse3' --auto-unmount

run_allow_root_test

Expand Down
6 changes: 3 additions & 3 deletions tests/experimental_mount_tests.sh
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ function run_allow_root_test {
useradd fusertest1
useradd fusertest2
DIR=$(su fusertest1 -c "mktemp --directory")
cargo build --example async_hello --features libfuse,abi-7-30 > /dev/null 2>&1
cargo build --example async_hello --features libfuse > /dev/null 2>&1
su fusertest1 -c "target/debug/examples/async_hello $DIR --allow-root" &
FUSE_PID=$!
sleep 2
Expand Down Expand Up @@ -152,8 +152,8 @@ apt autoremove -y
apt install -y libfuse3-dev fuse3
echo 'user_allow_other' >> /etc/fuse.conf

run_test --features=libfuse,abi-7-30,experimental 'with libfuse3'
run_test --features=libfuse,abi-7-30,experimental 'with libfuse3' --auto-unmount
run_test --features=libfuse,experimental 'with libfuse3'
run_test --features=libfuse,experimental 'with libfuse3' --auto-unmount

run_allow_root_test

Expand Down
Loading