2006-03-01 13:25:08 +00:00
|
|
|
source common.sh
|
|
|
|
|
2009-03-18 13:15:55 +00:00
|
|
|
clearStore
|
2006-03-01 13:25:08 +00:00
|
|
|
|
2016-04-25 13:26:07 +00:00
|
|
|
path=$(nix-build dependencies.nix --no-out-link)
|
2006-03-01 13:25:08 +00:00
|
|
|
|
2014-02-26 16:58:53 +00:00
|
|
|
# Test nix-store -l.
|
|
|
|
[ "$(nix-store -l $path)" = FOO ]
|
|
|
|
|
|
|
|
# Test compressed logs.
|
|
|
|
clearStore
|
|
|
|
rm -rf $NIX_LOG_DIR
|
2014-08-21 19:50:19 +00:00
|
|
|
(! nix-store -l $path)
|
2017-11-20 16:50:49 +00:00
|
|
|
nix-build dependencies.nix --no-out-link --compress-build-log
|
2014-02-26 16:58:53 +00:00
|
|
|
[ "$(nix-store -l $path)" = FOO ]
|
2022-02-06 13:52:04 +00:00
|
|
|
|
|
|
|
# test whether empty logs work fine with `nix log`.
|
|
|
|
builder="$(mktemp)"
|
|
|
|
echo -e "#!/bin/sh\nmkdir \$out" > "$builder"
|
|
|
|
outp="$(nix-build -E \
|
|
|
|
'with import ./config.nix; mkDerivation { name = "fnord"; builder = '"$builder"'; }' \
|
|
|
|
--out-link "$(mktemp -d)/result")"
|
|
|
|
|
|
|
|
test -d "$outp"
|
|
|
|
|
|
|
|
nix log "$outp"
|