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
|
|
|
|
|
|
|
# Produce an escaped log file.
|
2014-02-26 16:58:53 +00:00
|
|
|
path=$(nix-build --log-type escapes -vv dependencies.nix --no-out-link 2> $TEST_ROOT/log.esc)
|
2006-03-01 13:25:08 +00:00
|
|
|
|
|
|
|
# Convert it to an XML representation.
|
2012-03-19 00:20:02 +00:00
|
|
|
nix-log2xml < $TEST_ROOT/log.esc > $TEST_ROOT/log.xml
|
2006-03-01 13:25:08 +00:00
|
|
|
|
|
|
|
# Is this well-formed XML?
|
2006-03-01 16:03:32 +00:00
|
|
|
if test "$xmllint" != "false"; then
|
2014-02-01 15:08:59 +00:00
|
|
|
$xmllint --noout $TEST_ROOT/log.xml || fail "malformed XML"
|
2006-03-01 13:25:08 +00:00
|
|
|
fi
|
|
|
|
|
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)
|
2014-02-26 16:58:53 +00:00
|
|
|
nix-build dependencies.nix --no-out-link --option build-compress-log true
|
|
|
|
[ "$(nix-store -l $path)" = FOO ]
|