From eedbc4e06c017d84814b4c1fad8c6b6db958f3da Mon Sep 17 00:00:00 2001 From: Shea Levy Date: Thu, 23 Nov 2017 21:50:01 -0500 Subject: fetchGit: Ignore tarballTtl if rev is set and not in the repo. Fixes #1697. --- tests/common.sh.in | 1 + tests/fetchGit.sh | 7 +++++++ 2 files changed, 8 insertions(+) (limited to 'tests') diff --git a/tests/common.sh.in b/tests/common.sh.in index ca6df25362dc..09f2949141a4 100644 --- a/tests/common.sh.in +++ b/tests/common.sh.in @@ -21,6 +21,7 @@ export NIX_REMOTE=$NIX_REMOTE_ unset NIX_PATH export TEST_HOME=$TEST_ROOT/test-home export HOME=$TEST_HOME +unset XDG_CACHE_HOME mkdir -p $TEST_HOME export PATH=@bindir@:$PATH diff --git a/tests/fetchGit.sh b/tests/fetchGit.sh index 7b13b587defb..09e4f742668e 100644 --- a/tests/fetchGit.sh +++ b/tests/fetchGit.sh @@ -86,3 +86,10 @@ git -C $repo commit -m 'Bla3' -a path4=$(nix eval --tarball-ttl 0 --raw "(builtins.fetchGit file://$repo).outPath") [[ $path2 = $path4 ]] + +# tarball-ttl should be ignored if we specify a rev +echo delft > $repo/hello +git -C $repo add hello +git -C $repo commit -m 'Bla4' +rev3=$(git -C $repo rev-parse HEAD) +nix eval --tarball-ttl 3600 "(builtins.fetchGit { url = $repo; rev = \"$rev3\"; })" >/dev/null -- cgit 1.4.1