diff options
author | Eelco Dolstra <e.dolstra@tudelft.nl> | 2006-03-01T16·03+0000 |
---|---|---|
committer | Eelco Dolstra <e.dolstra@tudelft.nl> | 2006-03-01T16·03+0000 |
commit | 80b5c7168436d4fa34952c2d7d8c26d9894afe3e (patch) | |
tree | 1b388801725c42b65c1763c114554d502d3c0ae2 /tests | |
parent | e3daee919d0335d2c41fc556ff55d8289ade10d0 (diff) |
* Doh!
Diffstat (limited to 'tests')
-rw-r--r-- | tests/logging.sh | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/logging.sh b/tests/logging.sh index aea9f78b169c..585bce2db9d3 100644 --- a/tests/logging.sh +++ b/tests/logging.sh @@ -9,12 +9,12 @@ $nixstore --log-type escapes -r -vv $($nixinstantiate dependencies.nix) 2> $TEST $TOP/src/nix-log2xml/nix-log2xml < $TEST_ROOT/log.esc > $TEST_ROOT/log.xml # Is this well-formed XML? -if test -n "$xmllint"; then +if test "$xmllint" != "false"; then $xmllint $xmlflags --noout $TEST_ROOT/log.xml fi # Convert to HTML. -if test -n "$xsltproc"; then +if test "$xsltproc" != "false"; then (cd $TOP/src/nix-log2xml && $xsltproc mark-errors.xsl - | $xsltproc log2html.xsl -) < $TEST_ROOT/log.xml > $TEST_ROOT/log.html # Ideally we would check that the generated HTML is valid... |