diff options
author | Eelco Dolstra <e.dolstra@tudelft.nl> | 2005-01-31T22·01+0000 |
---|---|---|
committer | Eelco Dolstra <e.dolstra@tudelft.nl> | 2005-01-31T22·01+0000 |
commit | 89c9bc11abc02cc746838bfef101e5fecc59a6c5 (patch) | |
tree | ff3f905443476b0c41be7560851cd90b2823b8df /tests/gc-concurrent2.nix.in | |
parent | 207bdcbe86bac5fb9e650d26b22ae33c667151e4 (diff) |
* Add a test for a more subtle race: a process starting after the
temporary root files have been read but creating outputs before the store directory has been read.
Diffstat (limited to 'tests/gc-concurrent2.nix.in')
-rw-r--r-- | tests/gc-concurrent2.nix.in | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/tests/gc-concurrent2.nix.in b/tests/gc-concurrent2.nix.in new file mode 100644 index 000000000000..e6050f1bbddb --- /dev/null +++ b/tests/gc-concurrent2.nix.in @@ -0,0 +1,25 @@ +let { + + input1 = derivation { + name = "dependencies-input-1"; + system = "@system@"; + builder = "@shell@"; + args = ["-e" "-x" ./dependencies.builder1.sh]; + }; + + input2 = derivation { + name = "dependencies-input-2"; + system = "@system@"; + builder = "@shell@"; + args = ["-e" "-x" ./dependencies.builder2.sh]; + }; + + body = derivation { + name = "gc-concurrent2"; + system = "@system@"; + builder = "@shell@"; + args = ["-e" "-x" ./gc-concurrent2.builder.sh]; + inherit input1 input2; + }; + +} \ No newline at end of file |