gnucash-2.4.15: disable test suite

The test suite was broken by the GLib 2.46.0 update. If anyone finds a
patch that remedies these issues for 2.4.x, please check it in!
Otherwise, we'll eventually update our default version to 2.6.x, I
suppose.

Closes https://github.com/NixOS/nixpkgs/issues/11084.
This commit is contained in:
Peter Simons 2015-11-18 15:25:52 +01:00
parent d7e6a46770
commit c8a8146fb4

View File

@ -54,7 +54,8 @@ stdenv.mkDerivation rec {
# The following settings fix failures in the test suite. It's not required otherwise.
NIX_LDFLAGS = "-rpath=${guile}/lib -rpath=${glib}/lib";
preCheck = "export GNC_DOT_DIR=$PWD/dot-gnucash";
doCheck = true;
doCheck = false; # https://github.com/NixOS/nixpkgs/issues/11084
enableParallelBuilding = true;