DejaGNU: Disable test suite for now.

svn path=/nixpkgs/trunk/; revision=13087
This commit is contained in:
Ludovic Courtès 2008-10-16 20:11:21 +00:00
parent bbf7342a10
commit 81542299cc

View file

@ -10,7 +10,16 @@ stdenv.mkDerivation rec {
buildInputs = [ expect makeWrapper ];
doCheck = true;
# FIXME: Enable when the /dev/pts problem is fixed.
doCheck = false;
# FIXME: The chroot /dev/pts is currently empty, which causes Expect
# to fail: http://www.linuxfromscratch.org//lfs/faq.html#no-ptys .
checkPhase = ''
# Provide `runtest' with a log name, otherwise it tries to run
# `whoami', which fails when in a chroot.
LOGNAME="nix-build-daemon" make check
'';
postInstall = ''
wrapProgram "$out/bin/runtest" \