large memory contract tests, plus a docker container for running heaptrack

This commit is contained in:
Aaron Blankstein
2020-03-02 08:57:27 -06:00
parent 37ac38cd2b
commit 9583263667
3 changed files with 125 additions and 0 deletions

15
Dockerfile.memtest Normal file
View File

@@ -0,0 +1,15 @@
FROM rust:latest
WORKDIR /src/blockstack-core
RUN apt-get update
RUN apt-get install valgrind heaptrack -y
RUN apt-get install less
RUN rustup install stable
COPY . .
RUN cargo test --no-run
CMD ["bash"]