2
0
mirror of https://github.com/checkpoint-restore/criu synced 2025-08-30 13:58:34 +00:00

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: Andrei Vagin <avagin@virtuozzo.com>
Signed-off-by: Pavel Emelyanov <xemul@virtuozzo.com>
This commit is contained in:
Andrei Vagin
2016-12-30 04:28:37 +03:00
committed by Pavel Emelyanov
parent 4c3068cfca
commit f5df0adac6
2 changed files with 2 additions and 1 deletions

View File

@@ -25,3 +25,4 @@ RUN make -j $(nproc) CC=$CC criu/parasite-syscall.o
RUN make -j $(nproc) CC=$CC
RUN make mrproper
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

View File

@@ -227,7 +227,7 @@ static int check_fd(struct autofs_params *p)
}
if (st.st_blksize != p->fd_stat.st_blksize) {
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++;
}
if (st.st_blocks != p->fd_stat.st_blocks) {