docker: add tests framework into Ubuntu16.04

"make check" command use cppunit and "sipp" for our tests framework.
Add them to our current validation docker file.
Also fix Acquire::Retries option (typo).

Change-Id: I92a1ad0b5aa3a8066c48445261ff38e4e5a01061
Reviewed-by: Olivier Soldano <olivier.soldano@savoirfairelinux.com>
This commit is contained in:
Guillaume Roguez
2017-07-19 11:59:24 -04:00
parent 9a47b90112
commit 9f8a096814

View File

@ -1,7 +1,7 @@
FROM ubuntu:16.04
RUN apt-get update && \
apt-get install -y -o Acquire::Retires=10 \
apt-get install -y -o Acquire::Retries=10 \
git \
autoconf \
automake \
@ -55,4 +55,9 @@ RUN apt-get update && \
libva-dev \
libvdpau-dev
# Tests framework
RUN apt-get install -y -o Acquire::Retries=10 \
libcppunit-dev \
sip-tester
RUN apt-get clean