aboutsummaryrefslogtreecommitdiffstats
path: root/test
diff options
context:
space:
mode:
authorBernd Schubert <bschubert@ddn.com>2025-04-24 19:38:21 +0200
committerBernd Schubert <bernd@bsbernd.com>2025-04-28 19:57:39 +0200
commit3421cab7773268e0afb4b300775b4d60f2b7acf5 (patch)
tree12a4ef7e88680d0d5465eff3dd595cb1805e45ed /test
parent91c9803cb4dc5251abbb9af312c917dddfdd689e (diff)
downloadlibfuse-3421cab7773268e0afb4b300775b4d60f2b7acf5.tar.gz
env variables to override default io-uring enable and q-depth
We want to especially test with and without io-uring being enabled. Ideally without modifying all tests - that is what the env variable can be used for. Signed-off-by: Bernd Schubert <bschubert@ddn.com>
Diffstat (limited to 'test')
-rwxr-xr-xtest/ci-build.sh7
1 files changed, 7 insertions, 0 deletions
diff --git a/test/ci-build.sh b/test/ci-build.sh
index 86230bd..2bced37 100755
--- a/test/ci-build.sh
+++ b/test/ci-build.sh
@@ -118,6 +118,13 @@ sanitized_build()
sudo rm -fr ${PREFIX_DIR}
)
+# Sanitized with io-uring
+export CC=clang
+export CXX=clang++
+export FUSE_URING_ENABLE=1
+sanitized_build
+unset FUSE_URING_ENABLE
+
# 32-bit sanitized build
export CC=clang
export CXX=clang++