Commit 85368292 authored by Nigel Tao's avatar Nigel Tao

html: when a parse test fails, don't bother testing rendering.

R=andybalholm
CC=golang-dev
https://golang.org/cl/5248061
parent 1204f740
...@@ -149,6 +149,7 @@ func TestParser(t *testing.T) { ...@@ -149,6 +149,7 @@ func TestParser(t *testing.T) {
} }
if want := string(b); got != want { if want := string(b); got != want {
t.Errorf("%s test #%d %q, got vs want:\n----\n%s----\n%s----", filename, i, text, got, want) t.Errorf("%s test #%d %q, got vs want:\n----\n%s----\n%s----", filename, i, text, got, want)
continue
} }
// Check that rendering and re-parsing results in an identical tree. // Check that rendering and re-parsing results in an identical tree.
pr, pw := io.Pipe() pr, pw := io.Pipe()
...@@ -165,6 +166,7 @@ func TestParser(t *testing.T) { ...@@ -165,6 +166,7 @@ func TestParser(t *testing.T) {
} }
if got != got1 { if got != got1 {
t.Errorf("%s test #%d %q, got vs got1:\n----\n%s----\n%s----", filename, i, text, got, got1) t.Errorf("%s test #%d %q, got vs got1:\n----\n%s----\n%s----", filename, i, text, got, got1)
continue
} }
} }
} }
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment