From 9d253ceca3dbd134b3b547aa7b8305f29fa45cf9 Mon Sep 17 00:00:00 2001 From: Eelco Dolstra Date: Tue, 16 Mar 2010 12:10:50 +0000 Subject: [PATCH] * Remove the obsolete gnu-integration.nix. svn path=/nixos/trunk/; revision=20648 --- tests/default.nix | 1 - tests/gnu-integration.nix | 20 -------------------- 2 files changed, 21 deletions(-) delete mode 100644 tests/gnu-integration.nix diff --git a/tests/default.nix b/tests/default.nix index 6806ca64adf..a6a7b27fe2a 100644 --- a/tests/default.nix +++ b/tests/default.nix @@ -7,7 +7,6 @@ with import ../lib/testing.nix { inherit nixpkgs services system; }; { firefox = apply (import ./firefox.nix); - gnuIntegration = apply (import ./gnu-integration.nix); installer = pkgs.lib.mapAttrs (name: complete) (call (import ./installer.nix)); kde4 = apply (import ./kde4.nix); login = apply (import ./login.nix); diff --git a/tests/gnu-integration.nix b/tests/gnu-integration.nix deleted file mode 100644 index 199df9538d5..00000000000 --- a/tests/gnu-integration.nix +++ /dev/null @@ -1,20 +0,0 @@ -{ pkgs, ... }: - -{ - machine = - { config, pkgs, ... }: - - { - nixpkgs.config.packageOverrides = origPkgs: { - cpio = pkgs.lib.overrideDerivation origPkgs.cpio (origAttrs: { - src = /home/eelco/Dev/nixpkgs/cpio-2.10.91.tar.bz2; - patches = []; - }); - }; - }; - - testScript = - '' - $machine->mustSucceed("cpio --help"); - ''; -}