tests: run command "/debug libs" in tests instead of Travis CI command

v2.8-utf8proc
Sébastien Helleu 2017-10-01 08:00:39 +02:00
parent 1ec9453b7e
commit 137d5863e2
2 changed files with 5 additions and 5 deletions

View File

@ -35,7 +35,6 @@ script:
after_success:
- weechat --help
- weechat-curses --help
- weechat -r "/debug libs;/quit"
matrix:
fast_finish: true

View File

@ -173,10 +173,6 @@ main (int argc, char *argv[])
ptr_core_buffer = gui_buffer_search_main ();
/* display WeeChat version and directories */
input_data (ptr_core_buffer, "/command core version");
input_data (ptr_core_buffer, "/debug dirs");
/* auto-load plugins from WEECHAT_EXTRA_LIBDIR if no plugin were loaded */
if (!weechat_plugins)
{
@ -187,6 +183,11 @@ main (int argc, char *argv[])
plugin_auto_load (0, NULL, 0, 1, 0);
}
/* display WeeChat version and directories */
input_data (ptr_core_buffer, "/command core version");
input_data (ptr_core_buffer, "/debug dirs");
input_data (ptr_core_buffer, "/debug libs");
/* run all tests */
printf ("\n");
printf (">>>>>>>>>> TESTS >>>>>>>>>>\n");