Fix the tests on 32bits machines

year 2222 is too much for a 32 bit timestamp. So replace it by something
smaller
This commit is contained in:
regnat 2022-03-15 21:05:01 +01:00
parent ba9e69cdcd
commit 2d5c43f210

View file

@ -1,6 +1,6 @@
source common.sh
touch foo -t 222211111111
touch foo -t 202211111111
# We only check whether 2222-11-1* **:**:** is the last modified date since
# `lastModified` is transformed into UTC in `builtins.fetchTarball`.
[[ "$(nix eval --impure --raw --expr "(builtins.fetchTree \"path://$PWD/foo\").lastModifiedDate")" =~ 2222111.* ]]
[[ "$(nix eval --impure --raw --expr "(builtins.fetchTree \"path://$PWD/foo\").lastModifiedDate")" =~ 2022111.* ]]