forked from lix-project/lix
Test the parallel copy over ssh-ng
Regression test for https://github.com/NixOS/nix/issues/6253
This commit is contained in:
parent
31a6e10fe5
commit
afac001c39
|
@ -90,6 +90,7 @@ nix_tests = \
|
||||||
zstd.sh \
|
zstd.sh \
|
||||||
compression-levels.sh \
|
compression-levels.sh \
|
||||||
nix-copy-ssh.sh \
|
nix-copy-ssh.sh \
|
||||||
|
nix-copy-ssh-ng.sh \
|
||||||
post-hook.sh \
|
post-hook.sh \
|
||||||
function-trace.sh \
|
function-trace.sh \
|
||||||
flakes/config.sh \
|
flakes/config.sh \
|
||||||
|
|
18
tests/nix-copy-ssh-ng.sh
Normal file
18
tests/nix-copy-ssh-ng.sh
Normal file
|
@ -0,0 +1,18 @@
|
||||||
|
source common.sh
|
||||||
|
|
||||||
|
clearStore
|
||||||
|
clearCache
|
||||||
|
|
||||||
|
remoteRoot=$TEST_ROOT/store2
|
||||||
|
chmod -R u+w "$remoteRoot" || true
|
||||||
|
rm -rf "$remoteRoot"
|
||||||
|
|
||||||
|
outPath=$(nix-build --no-out-link dependencies.nix)
|
||||||
|
|
||||||
|
nix store ping --store "ssh-ng://localhost?store=$NIX_STORE_DIR&remote-store=$remoteRoot%3fstore=$NIX_STORE_DIR%26real=$remoteRoot$NIX_STORE_DIR"
|
||||||
|
|
||||||
|
# Regression test for https://github.com/NixOS/nix/issues/6253
|
||||||
|
nix copy --to "ssh-ng://localhost?store=$NIX_STORE_DIR&remote-store=$remoteRoot%3fstore=$NIX_STORE_DIR%26real=$remoteRoot$NIX_STORE_DIR" $outPath --no-check-sigs &
|
||||||
|
nix copy --to "ssh-ng://localhost?store=$NIX_STORE_DIR&remote-store=$remoteRoot%3fstore=$NIX_STORE_DIR%26real=$remoteRoot$NIX_STORE_DIR" $outPath --no-check-sigs
|
||||||
|
|
||||||
|
[ -f $remoteRoot$outPath/foobar ]
|
Loading…
Reference in a new issue