summaryrefslogtreecommitdiffstats
path: root/plugin
diff options
context:
space:
mode:
authorJesse Hallam <jesse.hallam@gmail.com>2018-06-05 16:53:08 -0400
committerCarlos Tadeu Panato Junior <ctadeu@gmail.com>2018-06-05 22:53:08 +0200
commitffb1d5d8e3a40c007b8faa152ddc3ae281f2a63a (patch)
tree6b20295ca6b34229f8042ed4707ba6c157b84799 /plugin
parentbfba142e2bfe75e1adffb5f4b5facb77bd16fc21 (diff)
downloadchat-ffb1d5d8e3a40c007b8faa152ddc3ae281f2a63a.tar.gz
chat-ffb1d5d8e3a40c007b8faa152ddc3ae281f2a63a.tar.bz2
chat-ffb1d5d8e3a40c007b8faa152ddc3ae281f2a63a.zip
disable Supervisor_PluginRepeatedlyCrash (#8918)
* disable Supervisor_PluginRepeatedlyCrash This test is failing sporadically, largely due to the use of a timeout to verify results. A more robust solution is required. * disable Supervisor_PluginCrash This test is failing sporadically, largely due to the use of a timeout to verify results. A more robust solution is required.
Diffstat (limited to 'plugin')
-rw-r--r--plugin/rpcplugin/rpcplugintest/supervisor.go4
1 files changed, 2 insertions, 2 deletions
diff --git a/plugin/rpcplugin/rpcplugintest/supervisor.go b/plugin/rpcplugin/rpcplugintest/supervisor.go
index d225f96fc..f3ff847a2 100644
--- a/plugin/rpcplugin/rpcplugintest/supervisor.go
+++ b/plugin/rpcplugin/rpcplugintest/supervisor.go
@@ -31,8 +31,8 @@ func TestSupervisorProvider(t *testing.T, sp SupervisorProviderFunc) {
"Supervisor_InvalidExecutablePath": testSupervisor_InvalidExecutablePath,
"Supervisor_NonExistentExecutablePath": testSupervisor_NonExistentExecutablePath,
"Supervisor_StartTimeout": testSupervisor_StartTimeout,
- "Supervisor_PluginCrash": testSupervisor_PluginCrash,
- "Supervisor_PluginRepeatedlyCrash": testSupervisor_PluginRepeatedlyCrash,
+ // "Supervisor_PluginCrash": testSupervisor_PluginCrash,
+ // "Supervisor_PluginRepeatedlyCrash": testSupervisor_PluginRepeatedlyCrash,
} {
t.Run(name, func(t *testing.T) { f(t, sp) })
}