Browse Source

Fix error verbosity

Jakob Truelsen 15 years ago
parent
commit
c1b2e55b78
1 changed files with 1 additions and 2 deletions
  1. 1 2
      scripts/test.sh

+ 1 - 2
scripts/test.sh

@@ -107,7 +107,7 @@ function testHeaderFooter() {
 }
 }
 
 
 function testLoadError() {
 function testLoadError() {
-    wk about:blank http://a.nstld --load-error-handling abort tmp.pdf 2>$LEVEL2 >$LEVEL1 && (bad $1 && return)
+    wk about:blank http://a.nstld --load-error-handling abort tmp.pdf 2>$LEVEL1 >$LEVEL1 && (bad $1 && return)
     wk about:blank http://a.nstld --load-error-handling skip tmp1.pdf 2>$LEVEL2 >$LEVEL1 || (bad $1 && return)
     wk about:blank http://a.nstld --load-error-handling skip tmp1.pdf 2>$LEVEL2 >$LEVEL1 || (bad $1 && return)
     wk about:blank http://a.nstld --load-error-handling ignore tmp2.pdf 2>$LEVEL2 >$LEVEL1 || (bad $1 && return)
     wk about:blank http://a.nstld --load-error-handling ignore tmp2.pdf 2>$LEVEL2 >$LEVEL1 || (bad $1 && return)
     ([ -f tmp1.pdf ] && [ -f tmp2.pdf ] &&
     ([ -f tmp1.pdf ] && [ -f tmp2.pdf ] &&
@@ -123,7 +123,6 @@ function testToc() {
 	[ "$(pdftotext tmp.pdf /dev/stdout | grep -c bar)" == 2 ]) && good $1 || bad $1
 	[ "$(pdftotext tmp.pdf /dev/stdout | grep -c bar)" == 2 ]) && good $1 || bad $1
 }
 }
 
 
-
 function testOutline() {
 function testOutline() {
     echo "<html><head></head><body><h1>foo</h1><h2>bar</h2><h3>baz</h3></body>" > tmp.html
     echo "<html><head></head><body><h1>foo</h1><h2>bar</h2><h3>baz</h3></body>" > tmp.html
     wk --outline --outline-depth 2 tmp.html tmp.pdf 2>$LEVEL2 >$LEVEL1
     wk --outline --outline-depth 2 tmp.html tmp.pdf 2>$LEVEL2 >$LEVEL1