summaryrefslogtreecommitdiffhomepage
path: root/images/basic/fsstress/Dockerfile
diff options
context:
space:
mode:
authorFabricio Voznika <fvoznika@google.com>2021-01-15 14:49:27 -0800
committergVisor bot <gvisor-bot@google.com>2021-01-15 14:51:51 -0800
commitc7fc4a5d66dc5d6680219819f872c070a0590ca9 (patch)
tree136e899b1c58430dde41f055f2f8a94532e8517d /images/basic/fsstress/Dockerfile
parent9db126eb65ada4b2233ccb85a0e9c402b7efc5de (diff)
Add fsstress tests
Updates #5273 PiperOrigin-RevId: 352088736
Diffstat (limited to 'images/basic/fsstress/Dockerfile')
-rw-r--r--images/basic/fsstress/Dockerfile17
1 files changed, 17 insertions, 0 deletions
diff --git a/images/basic/fsstress/Dockerfile b/images/basic/fsstress/Dockerfile
new file mode 100644
index 000000000..84604ead5
--- /dev/null
+++ b/images/basic/fsstress/Dockerfile
@@ -0,0 +1,17 @@
+# Usage: docker run --rm fsstress -d /test -n 10000 -p 100 -X -v
+FROM alpine
+
+RUN apk add git
+RUN git clone https://github.com/linux-test-project/ltp.git --depth 1
+
+WORKDIR /ltp
+RUN ./travis/alpine.sh
+RUN make autotools && ./configure
+RUN make -C testcases/kernel/fs/fsstress
+RUN cp ./testcases/kernel/fs/fsstress/fsstress /usr/bin
+RUN rm -rf /fsstress /tmp
+
+WORKDIR /
+# This is required, otherwise running with -p > 1 prematurelly exits.
+COPY run.sh .
+ENTRYPOINT ["/run.sh"]