From 4aba8ad0225e217c9234acd97fb244586a6d6a5c Mon Sep 17 00:00:00 2001 From: Eelco Dolstra Date: Wed, 12 Feb 2025 20:05:02 +0100 Subject: [PATCH] Delete unused test --- tests/functional/symlinks.sh | 16 ---------------- 1 file changed, 16 deletions(-) delete mode 100644 tests/functional/symlinks.sh diff --git a/tests/functional/symlinks.sh b/tests/functional/symlinks.sh deleted file mode 100644 index 5eb22b3f901..00000000000 --- a/tests/functional/symlinks.sh +++ /dev/null @@ -1,16 +0,0 @@ -#!/usr/bin/env bash - -source common.sh - -# Check that when we have a derivation attribute that refers to a -# symlink, we copy the symlink, not its target. -# shellcheck disable=SC2016 -nix build --impure --no-link --expr ' - with import ./config.nix; - - mkDerivation { - name = "simple"; - builder = builtins.toFile "builder.sh" "[[ -L \"$symlink\" ]]; mkdir $out"; - symlink = ./lang/symlink-resolution/foo/overlays; - } -'