diff options
author | Adin Scannell <ascannell@google.com> | 2021-01-21 15:39:24 -0800 |
---|---|---|
committer | gVisor bot <gvisor-bot@google.com> | 2021-01-21 15:53:34 -0800 |
commit | 48dfb8db9e784604e9c7ad8e1a36cc862dac1b4d (patch) | |
tree | 475b61ab8e7f809c4fe85e4f51b36a71bb4854cb /images/basic/fsstress/Dockerfile.x86_64 | |
parent | 7bf656f4c635e4acdc0a61523220dfc9a1f3d1ba (diff) |
Add image presubmit tests and mark fsstress x86_64 only.
PiperOrigin-RevId: 353118942
Diffstat (limited to 'images/basic/fsstress/Dockerfile.x86_64')
-rw-r--r-- | images/basic/fsstress/Dockerfile.x86_64 | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/images/basic/fsstress/Dockerfile.x86_64 b/images/basic/fsstress/Dockerfile.x86_64 new file mode 100644 index 000000000..21b86065a --- /dev/null +++ b/images/basic/fsstress/Dockerfile.x86_64 @@ -0,0 +1,17 @@ +# Usage: docker run --rm fsstress -d /test -n 10000 -p 100 -X -v +FROM alpine + +RUN apk update && 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"] |