1
0
mirror of https://github.com/weechat/weechat.git synced 2026-06-26 21:06:38 +02:00

tests: temporary disable check of javascript plugin

The compilation with autotools fails to detect v8 lib (used by
javascript plugin) on Ubuntu Trusty, so the tests are failing because
javascript plugins is not loaded.

This check will be enabled again when autotools compilation will be
fixed.
This commit is contained in:
Sébastien Helleu
2015-12-25 12:02:34 +01:00
parent d52d82543a
commit a60075fb39
+1 -1
View File
@@ -58,7 +58,7 @@ TEST(Plugins, Loaded)
CHECK(hdata_search (hdata, plugins, "${plugin.name} == fifo", 1));
CHECK(hdata_search (hdata, plugins, "${plugin.name} == guile", 1));
CHECK(hdata_search (hdata, plugins, "${plugin.name} == irc", 1));
CHECK(hdata_search (hdata, plugins, "${plugin.name} == javascript", 1));
//CHECK(hdata_search (hdata, plugins, "${plugin.name} == javascript", 1));
CHECK(hdata_search (hdata, plugins, "${plugin.name} == logger", 1));
CHECK(hdata_search (hdata, plugins, "${plugin.name} == lua", 1));
CHECK(hdata_search (hdata, plugins, "${plugin.name} == perl", 1));