diff options
author | Eelco Dolstra <eelco.dolstra@logicblox.com> | 2012-09-12T15·29-0400 |
---|---|---|
committer | Eelco Dolstra <eelco.dolstra@logicblox.com> | 2012-09-12T15·29-0400 |
commit | 4ba47205c687772cf73a490eac3a489931d4913b (patch) | |
tree | c01efba8eb4fd308aa0d8dea9d4b9436f10d5995 /tests/nix-pull.sh | |
parent | 6762424e2471e3e4f9ba9b6bb883d08911d352fb (diff) |
Fix test failure on Darwin
Apparently our DBD::SQLite links against /usr/lib/libsqlite3.dylib, which is an old version that doesn't respect foreign key constraints. So manifests/cache.sqlite doesn't get updated properly when a manifest disappears. We should fix our DBD::SQLite, but in the meantime this will fix the test. http://hydra.nixos.org/build/3017959
Diffstat (limited to 'tests/nix-pull.sh')
-rw-r--r-- | tests/nix-pull.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/nix-pull.sh b/tests/nix-pull.sh index 79e7ae26b5cc..87239948c481 100644 --- a/tests/nix-pull.sh +++ b/tests/nix-pull.sh @@ -28,6 +28,6 @@ cat $outPath/input-2/bar # Check that the derivers are set properly. test $(nix-store -q --deriver "$outPath") = "$drvPath" -nix-store -q --deriver $(readLink $outPath/input-2) | grep -q -- "-input-2.drv" +nix-store -q --deriver $(readLink $outPath/input-2) | grep -q -- "-input-2.drv" clearManifests |