Skip to content

Commit

Permalink
Allow bypass of stderr check in testEcho (apache#3879)
Browse files Browse the repository at this point in the history
  • Loading branch information
mpmunasinghe authored and rabbah committed Jul 15, 2018
1 parent af3e744 commit b074a85
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -238,7 +238,8 @@ trait BasicActionRunnerTests extends ActionProxyContainerTestUtils {
checkStreams(out, err, {
case (o, e) =>
o should include("hello stdout")
e should include("hello stderr")
// some languages may not support printing to stderr
if (!config.skipTest) e should include("hello stderr")
}, argss.length)
}

Expand Down

0 comments on commit b074a85

Please sign in to comment.