Merge pull request #6264 from thufschmitt/fix-32bits-tests

Fix the tests on 32bits machines
This commit is contained in:
Eelco Dolstra
2022-03-16 09:13:23 +01:00
committed by GitHub
+3 -3
View File
@@ -1,6 +1,6 @@
source common.sh
touch foo -t 222211111111
# We only check whether 2222-11-1* **:**:** is the last modified date since
touch foo -t 202211111111
# We only check whether 2022-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.* ]]