Merge pull request #681 from menghanl/disable_handlertls_streamserverhandler

Temporarily disable handler-tls for TestStreamServerInterceptor due to #619
This commit is contained in:
Qi Zhao
2016-05-16 18:51:03 -07:00

View File

@ -1791,6 +1791,10 @@ func testUnaryServerInterceptor(t *testing.T, e env) {
func TestStreamServerInterceptor(t *testing.T) {
defer leakCheck(t)()
for _, e := range listTestEnv() {
// TODO(bradfitz): Temporarily skip this env due to #619.
if e.name == "handler-tls" {
continue
}
testStreamServerInterceptor(t, e)
}
}