1
0
Fork 0
mirror of https://github.com/NixOS/nix synced 2024-09-19 10:50:24 -04:00
nix/tests/logging.sh

16 lines
322 B
Bash
Raw Normal View History

2006-03-01 08:25:08 -05:00
source common.sh
clearStore
2006-03-01 08:25:08 -05:00
path=$(nix-build dependencies.nix --no-out-link)
2006-03-01 08:25:08 -05:00
2014-02-26 11:58:53 -05:00
# Test nix-store -l.
[ "$(nix-store -l $path)" = FOO ]
# Test compressed logs.
clearStore
rm -rf $NIX_LOG_DIR
(! nix-store -l $path)
2014-02-26 11:58:53 -05:00
nix-build dependencies.nix --no-out-link --option build-compress-log true
[ "$(nix-store -l $path)" = FOO ]