Skip to content
Snippets Groups Projects
Commit 9f8a0968 authored by Guillaume Roguez's avatar Guillaume Roguez
Browse files

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: default avatarOlivier Soldano <olivier.soldano@savoirfairelinux.com>
parent 9a47b901
Branches
No related tags found
No related merge requests found
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
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment