Commit 153f9169 authored by Justin Santa Barbara's avatar Justin Santa Barbara

e2e: change test strings to avoid error highlighting

The words "error" and "fail" are magic in test output, and are highlighted in the build logs. Change some test strings to avoid hitting the highlighting in normal operation.
parent a372a9fc
...@@ -59,7 +59,7 @@ var _ = SIGDescribe("SSH", func() { ...@@ -59,7 +59,7 @@ var _ = SIGDescribe("SSH", func() {
// Keep this test first - this variant runs on all nodes. // Keep this test first - this variant runs on all nodes.
{`echo "Hello from $(whoami)@$(hostname)"`, false, "", "", 0, nil}, {`echo "Hello from $(whoami)@$(hostname)"`, false, "", "", 0, nil},
{`echo "foo" | grep "bar"`, true, "", "", 1, nil}, {`echo "foo" | grep "bar"`, true, "", "", 1, nil},
{`echo "Out" && echo "Error" >&2 && exit 7`, true, "Out", "Error", 7, nil}, {`echo "stdout" && echo "stderr" >&2 && exit 7`, true, "stdout", "stderr", 7, nil},
} }
for i, testCase := range testCases { for i, testCase := range testCases {
......
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