about summary refs log tree commit diff
path: root/nixos/tests
diff options
context:
space:
mode:
authorJacek Galowicz <jacek@galowicz.de>2024-01-29 06:28:11 +0100
committerJacek Galowicz <jacek@galowicz.de>2024-01-29 07:59:15 +0100
commitd45acb5457503a8d0b82fed1f8aeb68ea3a4cd8e (patch)
tree7a50c9185b63d686d2097f089f2476fb70518e9b /nixos/tests
parent3dbf54decb8c368e9568743271cf5fe0eacb4d9f (diff)
nixos-rebuilt-target-host test: Add long TMPDIR to verify that fix works
Diffstat (limited to 'nixos/tests')
-rw-r--r--nixos/tests/nixos-rebuild-target-host.nix5
1 files changed, 5 insertions, 0 deletions
diff --git a/nixos/tests/nixos-rebuild-target-host.nix b/nixos/tests/nixos-rebuild-target-host.nix
index 8d60b788abf38..bf80b2fa66062 100644
--- a/nixos/tests/nixos-rebuild-target-host.nix
+++ b/nixos/tests/nixos-rebuild-target-host.nix
@@ -132,5 +132,10 @@ import ./make-test-python.nix ({ pkgs, ... }: {
         deployer.succeed("passh -c 3 -C -p ${nodes.target.users.users.bob.password} -P \"\[sudo\] password\" nixos-rebuild switch -I nixos-config=/root/configuration-3.nix --target-host bob@target --use-remote-sudo &>/dev/console")
         target_hostname = deployer.succeed("ssh alice@target cat /etc/hostname").rstrip()
         assert target_hostname == "config-3-deployed", f"{target_hostname=}"
+
+      with subtest("Deploy works with very long TMPDIR"):
+        tmp_dir = "/var/folder/veryveryveryveryverylongpathnamethatdoesnotworkwithcontrolpath"
+        deployer.succeed(f"mkdir -p {tmp_dir}")
+        deployer.succeed(f"TMPDIR={tmp_dir} nixos-rebuild switch -I nixos-config=/root/configuration-1.nix --target-host root@target &>/dev/console")
     '';
 })