Add back s-bit for compiled fusermount
authorBernd Schubert <bschubert@ddn.com>
Thu, 14 Mar 2024 20:27:10 +0000 (21:27 +0100)
committerBernd Schubert <bschubert@ddn.com>
Wed, 20 Mar 2024 11:32:39 +0000 (12:32 +0100)
This is also needed by some tests and was accidentally removed
in commit aab146eea8877ee744a1b5a0da8bbbf31d14bad1

test/ci-build.sh

index c41de7a50a1570ebdfd56c7d474400d6fe7804b5..73893a689de83fc70fb4272293e179cb30707333 100755 (executable)
@@ -57,6 +57,10 @@ for CC in gcc gcc-9 gcc-10 clang; do
     # libfuse will first try the install path and then system defaults
     sudo chmod 4755 ${PREFIX_DIR}/bin/fusermount3
 
+    # also needed for some of the tests
+    sudo chown root:root util/fusermount3
+    sudo chmod 4755 util/fusermount3
+
     ${TEST_CMD}
     popd
     rm -fr build-${CC}
@@ -83,6 +87,10 @@ sanitized_build()
     sudo ninja install
     sudo chmod 4755 ${PREFIX_DIR}/bin/fusermount3
 
+    # also needed for some of the tests
+    sudo chown root:root util/fusermount3
+    sudo chmod 4755 util/fusermount3
+
     # Test as root and regular user
     sudo ${TEST_CMD}
     # Cleanup temporary files (since they are now owned by root)