diff options
author | Bernd Schubert <bschubert@ddn.com> | 2024-03-20 01:14:07 +0100 |
---|---|---|
committer | Bernd Schubert <bschubert@ddn.com> | 2024-03-20 12:32:30 +0100 |
commit | 71a97226e89b790fbc76ff14ee127c7b3c242782 (patch) | |
tree | 95c91eda1f491dc03fd189d2243477d1a9257eb6 /test/ci-build.sh | |
parent | 38d40c5bc1bd2c3614214fd996d6aee1e964019a (diff) | |
download | libfuse-71a97226e89b790fbc76ff14ee127c7b3c242782.tar.gz |
Fix test failures: Create missing mount dir
Tests were failing because mount dir was missing.
Unclear to me why this became only recently an issue
(github internal - out of the sudden tests were hanging).
Diffstat (limited to 'test/ci-build.sh')
-rwxr-xr-x | test/ci-build.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/ci-build.sh b/test/ci-build.sh index fe77bbd..c41de7a 100755 --- a/test/ci-build.sh +++ b/test/ci-build.sh @@ -78,7 +78,7 @@ sanitized_build() # bug, cf. https://groups.google.com/forum/#!topic/mesonbuild/tgEdAXIIdC4 meson configure -D b_lundef=false - meson configure + meson configure --no-pager ninja sudo ninja install sudo chmod 4755 ${PREFIX_DIR}/bin/fusermount3 |