summary refs log tree commit diff
path: root/nixos/tests
diff options
context:
space:
mode:
authorBjørn Forsman <bjorn.forsman@gmail.com>2016-11-02 22:44:36 +0100
committerBjørn Forsman <bjorn.forsman@gmail.com>2016-11-02 22:46:19 +0100
commit2f8ac21e1bdf4f94730a9ed5774bef9542ae523d (patch)
tree0dd79c4fe7267898376f1ca71e86134e0d6f07f9 /nixos/tests
parenta113382f2c8557ede623e392be6a294b8a6aa545 (diff)
downloadnixpkgs-2f8ac21e1bdf4f94730a9ed5774bef9542ae523d.tar
nixpkgs-2f8ac21e1bdf4f94730a9ed5774bef9542ae523d.tar.gz
nixpkgs-2f8ac21e1bdf4f94730a9ed5774bef9542ae523d.tar.bz2
nixpkgs-2f8ac21e1bdf4f94730a9ed5774bef9542ae523d.tar.lz
nixpkgs-2f8ac21e1bdf4f94730a9ed5774bef9542ae523d.tar.xz
nixpkgs-2f8ac21e1bdf4f94730a9ed5774bef9542ae523d.tar.zst
nixpkgs-2f8ac21e1bdf4f94730a9ed5774bef9542ae523d.zip
nixos: remove test-config-examples.sh (obsolete)
This file has been non-functional for over two years, since
commit f002a27a80 ("Remove obsolete directory") removed
.../doc/config-examples/.
Diffstat (limited to 'nixos/tests')
-rwxr-xr-xnixos/tests/test-config-examples.sh14
1 files changed, 0 insertions, 14 deletions
diff --git a/nixos/tests/test-config-examples.sh b/nixos/tests/test-config-examples.sh
deleted file mode 100755
index 1ba2f841c41..00000000000
--- a/nixos/tests/test-config-examples.sh
+++ /dev/null
@@ -1,14 +0,0 @@
-#!/bin/sh
-
-# This script try to evaluate all configurations which are stored in
-# doc/config-examples.  This script is useful to ensure that examples are
-# working with the current system.
-
-pwd=$(pwd)
-set -xe
-for i in ../doc/config-examples/*.nix; do
-  NIXOS_CONFIG="$pwd/$i" nix-instantiate \
-      --eval-only --xml --strict > /dev/null 2>&1 \
-      ../default.nix -A system
-done
-set +xe