2006-03-01 14:25:08 +01:00
|
|
|
source common.sh
|
|
|
|
|
2009-03-18 14:15:55 +01:00
|
|
|
clearStore
|
2006-03-01 14:25:08 +01:00
|
|
|
|
|
|
|
# Produce an escaped log file.
|
2009-03-18 14:15:55 +01:00
|
|
|
set -x
|
2012-09-12 01:14:15 +02:00
|
|
|
nix-build --log-type escapes -vv dependencies.nix --no-out-link 2> $TEST_ROOT/log.esc
|
2006-03-01 14:25:08 +01:00
|
|
|
|
|
|
|
# Convert it to an XML representation.
|
2012-03-19 01:20:02 +01:00
|
|
|
nix-log2xml < $TEST_ROOT/log.esc > $TEST_ROOT/log.xml
|
2006-03-01 14:25:08 +01:00
|
|
|
|
|
|
|
# Is this well-formed XML?
|
2006-03-01 17:03:32 +01:00
|
|
|
if test "$xmllint" != "false"; then
|
2014-02-01 16:08:59 +01:00
|
|
|
$xmllint --noout $TEST_ROOT/log.xml || fail "malformed XML"
|
2006-03-01 14:25:08 +01:00
|
|
|
fi
|
|
|
|
|
|
|
|
# Convert to HTML.
|
2006-03-01 17:03:32 +01:00
|
|
|
if test "$xsltproc" != "false"; then
|
2012-03-19 01:20:02 +01:00
|
|
|
(cd $datadir/nix/log2html && $xsltproc mark-errors.xsl - | $xsltproc log2html.xsl -) < $TEST_ROOT/log.xml > $TEST_ROOT/log.html
|
2006-03-01 14:25:08 +01:00
|
|
|
# Ideally we would check that the generated HTML is valid...
|
|
|
|
|
|
|
|
# A few checks...
|
2009-03-18 14:15:55 +01:00
|
|
|
grep "<code>.*FOO" $TEST_ROOT/log.html || fail "bad HTML output"
|
2006-03-01 14:25:08 +01:00
|
|
|
fi
|