diff options
author | Eelco Dolstra <edolstra@gmail.com> | 2019-08-02T15·07+0200 |
---|---|---|
committer | Eelco Dolstra <edolstra@gmail.com> | 2019-08-02T16·39+0200 |
commit | ec415d7166d607c92cf8f1af688f86e4b4731dff (patch) | |
tree | c9c04c9c0a68be28f81a779f47dc6c9108b9cb66 /tests/local.mk | |
parent | 320126aeebc89f8c34ee1668ebacf1fe4b512ed8 (diff) |
Add a test for auto-GC
This currently fails because we're using POSIX file locks. So when the garbage collector opens and closes its own temproots file, it causes the lock to be released and then deleted by another GC instance.
Diffstat (limited to 'tests/local.mk')
-rw-r--r-- | tests/local.mk | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/tests/local.mk b/tests/local.mk index 1ff68348b3c7..261e4db0de88 100644 --- a/tests/local.mk +++ b/tests/local.mk @@ -3,7 +3,9 @@ check: nix_tests = \ init.sh hash.sh lang.sh add.sh simple.sh dependencies.sh \ - gc.sh gc-concurrent.sh \ + gc.sh \ + gc-concurrent.sh \ + gc-auto.sh \ referrers.sh user-envs.sh logging.sh nix-build.sh misc.sh fixed.sh \ gc-runtime.sh check-refs.sh filter-source.sh \ remote-store.sh export.sh export-graph.sh \ |