Commit f5df0ada authored by Andrei Vagin's avatar Andrei Vagin Committed by Pavel Emelyanov

travis: build tests in docker containers

travis-ci: success for series starting with [1/3] zdtm: call test_init() before doing anything
Signed-off-by: 's avatarAndrei Vagin <avagin@virtuozzo.com>
Signed-off-by: 's avatarPavel Emelyanov <xemul@virtuozzo.com>
parent 4c3068cf
...@@ -25,3 +25,4 @@ RUN make -j $(nproc) CC=$CC criu/parasite-syscall.o ...@@ -25,3 +25,4 @@ RUN make -j $(nproc) CC=$CC criu/parasite-syscall.o
RUN make -j $(nproc) CC=$CC RUN make -j $(nproc) CC=$CC
RUN make mrproper RUN make mrproper
RUN bash -c 'CLEAN="$(git clean -ndx --exclude=scripts/build --exclude=.config)"; echo "${CLEAN}"; test -z "${CLEAN}"; exit $?' RUN bash -c 'CLEAN="$(git clean -ndx --exclude=scripts/build --exclude=.config)"; echo "${CLEAN}"; test -z "${CLEAN}"; exit $?'
RUN make -j $(nproc) CC=$CC -C test/zdtm
...@@ -227,7 +227,7 @@ static int check_fd(struct autofs_params *p) ...@@ -227,7 +227,7 @@ static int check_fd(struct autofs_params *p)
} }
if (st.st_blksize != p->fd_stat.st_blksize) { if (st.st_blksize != p->fd_stat.st_blksize) {
pr_err("%s: st_blksize differs %ld != %ld:\n", p->mountpoint, pr_err("%s: st_blksize differs %ld != %ld:\n", p->mountpoint,
st.st_blksize, p->fd_stat.st_blksize); (long)st.st_blksize, (long)p->fd_stat.st_blksize);
ret++; ret++;
} }
if (st.st_blocks != p->fd_stat.st_blocks) { if (st.st_blocks != p->fd_stat.st_blocks) {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment