about summary refs log tree commit diff
path: root/tests
diff options
context:
space:
mode:
authorEelco Dolstra <eelco.dolstra@logicblox.com>2014-08-13T17·01+0200
committerEelco Dolstra <eelco.dolstra@logicblox.com>2014-08-13T17·01+0200
commitcb921f67c3f87c0934f7969f24cd6deab70e8574 (patch)
treef7735f18398fd5fbb78da33739f0d3066d646a04 /tests
parente9b609bf9ae301eb415227e76b6ae904881c07eb (diff)
Remove log2html.xsl and friends
It's part of Hydra now.
Diffstat (limited to 'tests')
-rw-r--r--tests/common.sh.in1
-rw-r--r--tests/logging.sh9
2 files changed, 0 insertions, 10 deletions
diff --git a/tests/common.sh.in b/tests/common.sh.in
index 48ca7d2ddd..8581223b3d 100644
--- a/tests/common.sh.in
+++ b/tests/common.sh.in
@@ -23,7 +23,6 @@ export PATH=@bindir@:$PATH
 export NIX_BUILD_HOOK=
 export dot=@dot@
 export xmllint="@xmllint@"
-export xsltproc="@xsltproc@"
 export SHELL="@bash@"
 
 export version=@PACKAGE_VERSION@
diff --git a/tests/logging.sh b/tests/logging.sh
index 5ba71c3e40..0113ed11c4 100644
--- a/tests/logging.sh
+++ b/tests/logging.sh
@@ -14,15 +14,6 @@ if test "$xmllint" != "false"; then
     $xmllint --noout $TEST_ROOT/log.xml || fail "malformed XML"
 fi
 
-# Convert to HTML.
-if test "$xsltproc" != "false"; then
-    (cd $datadir/nix/log2html && $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...
-
-    # A few checks...
-    grep "<code>.*FOO" $TEST_ROOT/log.html || fail "bad HTML output"
-fi
-
 # Test nix-store -l.
 [ "$(nix-store -l $path)" = FOO ]