aboutsummaryrefslogtreecommitdiff
path: root/tests/ssh-relay.sh
diff options
context:
space:
mode:
authorJohn Ericson <John.Ericson@Obsidian.Systems>2020-08-20 05:08:50 +0000
committerJohn Ericson <John.Ericson@Obsidian.Systems>2020-08-20 05:08:50 +0000
commit3df78858f2ad91a80e30ba910119a0c16c05c66a (patch)
treee3956e944eaf4fe9617b60452452dc332eb2bf09 /tests/ssh-relay.sh
parenta83694c7a1212567ec2f032f84c0d72722bcf5ea (diff)
Fix max fd calc and add test
Diffstat (limited to 'tests/ssh-relay.sh')
-rw-r--r--tests/ssh-relay.sh16
1 files changed, 16 insertions, 0 deletions
diff --git a/tests/ssh-relay.sh b/tests/ssh-relay.sh
new file mode 100644
index 000000000..dce50974b
--- /dev/null
+++ b/tests/ssh-relay.sh
@@ -0,0 +1,16 @@
+source common.sh
+
+echo foo > $TEST_ROOT/hello.sh
+
+ssh_localhost=ssh://localhost
+remote_store=?remote-store=$ssh_localhost
+
+store=$ssh_localhost
+
+store+=$remote_store
+store+=$remote_store
+store+=$remote_store
+
+out=$(nix add-to-store --store "$store" $TEST_ROOT/hello.sh)
+
+[ foo = $(< $out) ]