summaryrefslogtreecommitdiffhomepage
path: root/images
diff options
context:
space:
mode:
authorAndrei Vagin <avagin@gmail.com>2020-09-14 15:32:46 -0700
committerAndrei Vagin <avagin@gmail.com>2020-09-16 12:22:17 -0700
commitf148242abab1ff043428036ccaf464de98268863 (patch)
tree1e57aea21f2fe0cfaf7031d6fa4b9f2fb3b0aa8c /images
parent113928754c26ea3d4d7d387bae459ce447774d30 (diff)
Revert "fuse: add benchmarking support for FUSE"
test/fuse/benchmark/read_benchmark.cc:34: Failure Expected: (fuse_prefix) != (nullptr), actual: NULL vs (nullptr) external/com_google_benchmark/src/benchmark_runner.cc:120: RunInThread: Check `st.iterations() >= st.max_iterations' failed. Benchmark returned before State::KeepRunning() returned false! --- FAIL: Benchmarks_BM_Read/262144/real_time (0.29s) runner.go:502: test "Benchmarks.BM_Read/262144/real_time" failed with error exit status 134, want nil FAIL
Diffstat (limited to 'images')
-rw-r--r--images/basic/fuse/Dockerfile15
1 files changed, 0 insertions, 15 deletions
diff --git a/images/basic/fuse/Dockerfile b/images/basic/fuse/Dockerfile
deleted file mode 100644
index 9e88aa2c5..000000000
--- a/images/basic/fuse/Dockerfile
+++ /dev/null
@@ -1,15 +0,0 @@
-FROM ubuntu:20.04
-
-ENV DEBIAN_FRONTEND=noninteractive
-
-RUN apt-get update
-RUN apt-get install -y build-essential git pkg-config fuse3 libfuse3-3 libfuse3-dev strace
-
-WORKDIR /fus
-
-RUN mkdir -pv mountpoint
-RUN git clone https://github.com/libfuse/libfuse
-
-RUN gcc -Wall ./libfuse/example/passthrough.c `pkg-config fuse3 --cflags --libs` -o server-bin
-
-CMD ["bash"]