Skip to content
Snippets Groups Projects
Commit ef849507 authored by Allan Blanchard's avatar Allan Blanchard
Browse files

[nix] add coverage in nix tests

parent d5ad375d
No related branches found
No related tags found
No related merge requests found
{ mk_tests } :
{ mk_tests, frama-c-nocover } :
mk_tests {
tests-name = "default-config-tests";
let mk_tests_distrib = mk_tests.override {
frama-c = frama-c-nocover ;
}; in
mk_tests_distrib {
tests-name = "src-distrib-tests";
tests-command = ''
dune exec -- frama-c-ptests -never-disabled tests src/plugins/*/tests
dune build -j1 --display short @ptests_config
......
......@@ -45,6 +45,11 @@ fi
# Normalize version for Nix
OCAML=${OCAML/./_}
OUTOPT="--no-out-link"
if [ ! -z ${OUT+x} ]; then
OUTOPT="-o $(pwd)/$OUT"
fi
DEFAULT=${DEFAULT:-master}
# prints
......@@ -118,7 +123,7 @@ if [[ -f "./nix/dependencies" ]]; then
fi
# run the build
nix-build --no-out-link "./nix/pkgs.nix" $OPTS -A ocaml-ng.ocamlPackages_$OCAML."$plugin"
nix-build $OUTOPT "./nix/pkgs.nix" $OPTS -A ocaml-ng.ocamlPackages_$OCAML."$plugin"
cd "$fc_dir"
......
......@@ -11,6 +11,7 @@
, findlib
# Frama-C build
, apron
, bisect_ppx
, camlzip
, camomile
, dune_3
......@@ -46,6 +47,7 @@
, python3
, python3Packages
, yq
, cover ? true
, release_mode ? false
}:
......@@ -71,6 +73,7 @@ stdenvNoCC.mkDerivation rec {
buildInputs = [
apron
bisect_ppx
camlzip
camomile
dune_3
......@@ -105,8 +108,6 @@ stdenvNoCC.mkDerivation rec {
dos2unix
doxygen
python3
python3Packages.pyaml
yq
];
outputs = [ "out" "build_dir" ];
......@@ -121,11 +122,15 @@ stdenvNoCC.mkDerivation rec {
enableParallelBuilding = false;
dune_opt = if release_mode then "--release" else "" ;
buildPhase = ''
dune build -j2 --display short --error-reporting=twice $release_mode @install
make tools/ptests/ptests.exe
make tools/ptests/wtests.exe
'';
buildPhase = (if cover then ''
export DUNE_WORKSPACE="dev/dune-workspace.cover"
'' else "") +
''
dune build -j2 --display short --error-reporting=twice $dune_opt @install
make tools/ptests/ptests.exe
make tools/ptests/wtests.exe
'';
installFlags = [
"PREFIX=$(out)"
......
......@@ -33,6 +33,7 @@
{ tests-name
, tests-command
, has-wp-proofs ? false
, cover ? true
} :
stdenvNoCC.mkDerivation {
......@@ -68,14 +69,28 @@ stdenvNoCC.mkDerivation {
else "" ;
preBuild =
if has-wp-proofs
(if has-wp-proofs
then ''
mkdir home
HOME=$(pwd)/home
why3 config detect
export FRAMAC_WP_CACHE=offline
export FRAMAC_WP_CACHEDIR=$wp_cache
''
else "") +
(if cover
then ''
mkdir coverage
export DUNE_WORKSPACE="dev/dune-workspace.cover"
export BISECT_FILE="$(pwd)/coverage/bisect-"
''
else "");
postBuild =
if cover
then ''
mkdir home
HOME=$(pwd)/home
why3 config detect
export FRAMAC_WP_CACHE=offline
export FRAMAC_WP_CACHEDIR=$wp_cache
''
bisect-ppx-report cobertura --coverage-path=coverage coverage.xml
''
else "" ;
buildPhase = ''
......@@ -87,6 +102,7 @@ stdenvNoCC.mkDerivation {
# No installation required
installPhase = ''
touch $out
mkdir $out
cp -r coverage.xml $out
'';
}
......@@ -23,11 +23,16 @@ let
# Builds
frama-c = oself.callPackage ./frama-c.nix {};
frama-c-no-cover = oself.callPackage ./frama-c.nix { cover = false ; };
frama-c-hdrck = oself.callPackage ./frama-c-hdrck.nix {};
frama-c-lint = oself.callPackage ./frama-c-lint.nix {};
# Tests
default-config-tests = oself.callPackage ./default-config-tests.nix {};
default-config-tests = oself.callPackage ./default-config-tests.nix {
frama-c-nocover = oself.frama-c.override {
cover = false ;
} ;
};
e-acsl-tests = oself.callPackage ./e-acsl-tests.nix { config = ""; };
e-acsl-dev-tests = oself.callPackage ./e-acsl-tests.nix { config = "dev"; };
eva-default-tests = oself.callPackage ./eva-tests.nix { config = ""; };
......@@ -52,7 +57,10 @@ let
api-doc = oself.callPackage ./api-doc.nix {};
manuals = oself.callPackage ./manuals.nix {};
src-distrib-tests = oself.callPackage ./src-distrib-tests.nix {
frama-c-release = oself.frama-c.override { release_mode = true ; } ;
frama-c-release = oself.frama-c.override {
release_mode = true ;
cover = false ;
} ;
};
};
overlay = self: super: {
......
......@@ -28,11 +28,15 @@ stdenv.mkDerivation rec {
'';
buildPhase = ''
mkdir coverage
export BISECT_FILE="$(pwd)/coverage/bisect-"
make -C ivette check-api
bisect-ppx-report cobertura --coverage-path=coverage coverage.xml
'';
# No installation required
installPhase = ''
touch $out
mkdir $out
cp -r coverage.xml $out
'';
}
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment